001/* Generated By:JavaCC: Do not edit this line. GoloParserTreeConstants.java Version 6.1_2 */
002package org.eclipse.golo.compiler.parser;
003
004public interface GoloParserTreeConstants
005{
006  public int JJTERROR = 0;
007  public int JJTVOID = 1;
008  public int JJTCOMPILATIONUNIT = 2;
009  public int JJTMODULEDECLARATION = 3;
010  public int JJTIMPORTDECLARATION = 4;
011  public int JJTTOPLEVELDECLARATION = 5;
012  public int JJTMEMBERDECLARATION = 6;
013  public int JJTSTRUCTDECLARATION = 7;
014  public int JJTUNIONVALUE = 8;
015  public int JJTUNIONDECLARATION = 9;
016  public int JJTNAMEDAUGMENTATIONDECLARATION = 10;
017  public int JJTAUGMENTDECLARATION = 11;
018  public int JJTFUNCTIONDECLARATION = 12;
019  public int JJTDECORATORDECLARATION = 13;
020  public int JJTCONTINUE = 14;
021  public int JJTBREAK = 15;
022  public int JJTTHROW = 16;
023  public int JJTWHILELOOP = 17;
024  public int JJTFORLOOP = 18;
025  public int JJTFOREACHLOOP = 19;
026  public int JJTTRYCATCHFINALLY = 20;
027  public int JJTEXPRESSIONSTATEMENT = 21;
028  public int JJTLOCALDECLARATION = 22;
029  public int JJTUNARYEXPRESSION = 23;
030  public int JJTINVOCATIONEXPRESSION = 24;
031  public int JJTMULTIPLICATIVEEXPRESSION = 25;
032  public int JJTADDITIVEEXPRESSION = 26;
033  public int JJTRELATIONALEXPRESSION = 27;
034  public int JJTEQUALITYEXPRESSION = 28;
035  public int JJTANDEXPRESSION = 29;
036  public int JJTOREXPRESSION = 30;
037  public int JJTORIFNULLEXPRESSION = 31;
038  public int JJTMETHODINVOCATION = 32;
039  public int JJTBLOCK = 33;
040  public int JJTFUNCTION = 34;
041  public int JJTLITERAL = 35;
042  public int JJTCOLLECTIONLITERAL = 36;
043  public int JJTREFERENCE = 37;
044  public int JJTDESTRUCTURINGASSIGNMENT = 38;
045  public int JJTLETORVAR = 39;
046  public int JJTASSIGNMENT = 40;
047  public int JJTRETURN = 41;
048  public int JJTARGUMENT = 42;
049  public int JJTANONYMOUSFUNCTIONINVOCATION = 43;
050  public int JJTFUNCTIONINVOCATION = 44;
051  public int JJTCONDITIONALBRANCHING = 45;
052  public int JJTCASE = 46;
053  public int JJTMATCH = 47;
054
055
056  public String[] jjtNodeName = {
057    "error",
058    "void",
059    "CompilationUnit",
060    "ModuleDeclaration",
061    "ImportDeclaration",
062    "ToplevelDeclaration",
063    "MemberDeclaration",
064    "StructDeclaration",
065    "UnionValue",
066    "UnionDeclaration",
067    "NamedAugmentationDeclaration",
068    "AugmentDeclaration",
069    "FunctionDeclaration",
070    "DecoratorDeclaration",
071    "Continue",
072    "Break",
073    "Throw",
074    "WhileLoop",
075    "ForLoop",
076    "ForEachLoop",
077    "TryCatchFinally",
078    "ExpressionStatement",
079    "LocalDeclaration",
080    "UnaryExpression",
081    "InvocationExpression",
082    "MultiplicativeExpression",
083    "AdditiveExpression",
084    "RelationalExpression",
085    "EqualityExpression",
086    "AndExpression",
087    "OrExpression",
088    "OrIfNullExpression",
089    "MethodInvocation",
090    "Block",
091    "Function",
092    "Literal",
093    "CollectionLiteral",
094    "Reference",
095    "DestructuringAssignment",
096    "LetOrVar",
097    "Assignment",
098    "Return",
099    "Argument",
100    "AnonymousFunctionInvocation",
101    "FunctionInvocation",
102    "ConditionalBranching",
103    "Case",
104    "Match",
105  };
106}
107/* JavaCC - OriginalChecksum=7a7e288528cd0fbedf47170530f999a7 (do not edit this line) */