Пример #1
0
 public Parser(TokenRegistry tokens)
 {
     this.tokens  = tokens;
     this.symbols = new SymbolRegistry();
     this.ast     = new AST.AST();
 }
 public ProgramDeclarationASTNode(string programName)
 {
     this.programName = programName;
     this.programBody = new AST();
 }