Example #1
0
    private void InitializeCyclicDFAs()
    {
        this.dfa18 = new DFA18(this);
        this.dfa30 = new DFA30(this);

        this.dfa30.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA30_SpecialStateTransition);
    }
	protected override void InitDFAs()
	{
		base.InitDFAs();
		dfa15 = new DFA15(this, SpecialStateTransition15);
		dfa20 = new DFA20(this);
		dfa30 = new DFA30(this, SpecialStateTransition30);
	}
Example #3
0
	private void InitializeCyclicDFAs()
	{
	    this.dfa10 = new DFA10(this);
	    this.dfa2 = new DFA2(this);
	    this.dfa5 = new DFA5(this);
	    this.dfa19 = new DFA19(this);
	    this.dfa30 = new DFA30(this);
	}
Example #4
0
	private void InitializeCyclicDFAs()
	{
    	this.dfa6 = new DFA6(this);
    	this.dfa10 = new DFA10(this);
    	this.dfa13 = new DFA13(this);
    	this.dfa21 = new DFA21(this);
    	this.dfa30 = new DFA30(this);
    	this.dfa34 = new DFA34(this);
    	this.dfa38 = new DFA38(this);
    	this.dfa41 = new DFA41(this);
    	this.dfa44 = new DFA44(this);
    	this.dfa47 = new DFA47(this);
    	this.dfa50 = new DFA50(this);
    	this.dfa53 = new DFA53(this);
    	this.dfa57 = new DFA57(this);
    	this.dfa70 = new DFA70(this);
    	this.dfa71 = new DFA71(this);
    	this.dfa73 = new DFA73(this);
	    this.dfa6.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA6_SpecialStateTransition);
	    this.dfa13.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA13_SpecialStateTransition);
	    this.dfa21.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA21_SpecialStateTransition);
	}