ES3Parser.InitializeCyclicDFAs C# (CSharp) Method

InitializeCyclicDFAs() private method

private InitializeCyclicDFAs ( ) : void
return void
	private void InitializeCyclicDFAs()
	{
    	this.dfa57 = new DFA57(this);
    	this.dfa58 = new DFA58(this);
    	this.dfa88 = new DFA88(this);
	    this.dfa57.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA57_SpecialStateTransition);
	    this.dfa88.specialStateTransitionHandler = new DFA.SpecialStateTransitionHandler(DFA88_SpecialStateTransition);
	}
ES3Parser