예제 #1
0
파일: PEParser.cs 프로젝트: langeds/aima
		public PEParser() 
		{
			lookAheadBuffer = new Token[_lookAhead];
		}
예제 #2
0
파일: Parser.cs 프로젝트: langeds/aima
		protected bool isEndOfInput(Token t) 
		{
			return (t.getType() == LogicTokenTypes.EOI);
		}