Example #1
0
	private void InitializeCyclicDFAs()
	{
    	this.dfa59 = new DFA59(this);
    	this.dfa60 = new DFA60(this);
	    this.dfa59.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA59_SpecialStateTransition);
	    this.dfa60.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA60_SpecialStateTransition);
	}
Example #2
0
    private void InitializeCyclicDFAs()
    {
        this.dfa10 = new DFA10(this);
        this.dfa16 = new DFA16(this);
        this.dfa33 = new DFA33(this);
        this.dfa34 = new DFA34(this);
        this.dfa35 = new DFA35(this);
        this.dfa36 = new DFA36(this);
        this.dfa43 = new DFA43(this);
        this.dfa48 = new DFA48(this);
        this.dfa50 = new DFA50(this);
        this.dfa57 = new DFA57(this);
        this.dfa60 = new DFA60(this);
        this.dfa67 = new DFA67(this);
        this.dfa70 = new DFA70(this);
        this.dfa73 = new DFA73(this);

        this.dfa43.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA43_SpecialStateTransition);
        this.dfa48.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA48_SpecialStateTransition);
        this.dfa50.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA50_SpecialStateTransition);
        this.dfa57.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA57_SpecialStateTransition);
    }
Example #3
0
	protected override void InitDFAs()
	{
		base.InitDFAs();
		dfa1 = new DFA1( this, SpecialStateTransition1 );
		dfa2 = new DFA2( this, SpecialStateTransition2 );
		dfa8 = new DFA8( this, SpecialStateTransition8 );
		dfa24 = new DFA24( this );
		dfa39 = new DFA39( this, SpecialStateTransition39 );
		dfa41 = new DFA41( this, SpecialStateTransition41 );
		dfa42 = new DFA42( this, SpecialStateTransition42 );
		dfa44 = new DFA44( this, SpecialStateTransition44 );
		dfa46 = new DFA46( this, SpecialStateTransition46 );
		dfa47 = new DFA47( this, SpecialStateTransition47 );
		dfa58 = new DFA58( this, SpecialStateTransition58 );
		dfa60 = new DFA60( this, SpecialStateTransition60 );
		dfa123 = new DFA123( this, SpecialStateTransition123 );
		dfa146 = new DFA146( this );
	}