예제 #1
0
파일: DFA.cs 프로젝트: mahanteshck/antlrcs
 public virtual int Predict( IIntStream input )
 {
     Interpreter interp = new Interpreter( Nfa.Grammar, input );
     return interp.Predict( this );
 }