Exemplo n.º 1
0
 public StatementParser(Token[] tokens, IParsingContext[] parsingContexts, MethodDefinition containingMethod)
 {
     mTokens = tokens;
     mParsingContexts = parsingContexts;
     mContainingMethod = containingMethod;
     Reset();
 }
Exemplo n.º 2
0
 private void Reset()
 {
     mCurrentTokenIndex = mTokens.Length - 1;
     mToken = mTokens[mCurrentTokenIndex];
 }
Exemplo n.º 3
0
Arquivo: Engine.cs Projeto: Sullux/tws
 private void Move()
 {
     mToken = mLexer.Scan();
     Debug.WriteLine("Moved to {0}", mToken);
 }