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 JJTUNARYEXPRESSION = 22;
029  public int JJTINVOCATIONEXPRESSION = 23;
030  public int JJTMULTIPLICATIVEEXPRESSION = 24;
031  public int JJTADDITIVEEXPRESSION = 25;
032  public int JJTRELATIONALEXPRESSION = 26;
033  public int JJTEQUALITYEXPRESSION = 27;
034  public int JJTANDEXPRESSION = 28;
035  public int JJTOREXPRESSION = 29;
036  public int JJTORIFNULLEXPRESSION = 30;
037  public int JJTMETHODINVOCATION = 31;
038  public int JJTBLOCK = 32;
039  public int JJTFUNCTION = 33;
040  public int JJTLITERAL = 34;
041  public int JJTCOLLECTIONLITERAL = 35;
042  public int JJTREFERENCE = 36;
043  public int JJTDESTRUCTURINGASSIGNMENT = 37;
044  public int JJTLETORVAR = 38;
045  public int JJTASSIGNMENT = 39;
046  public int JJTRETURN = 40;
047  public int JJTARGUMENT = 41;
048  public int JJTANONYMOUSFUNCTIONINVOCATION = 42;
049  public int JJTFUNCTIONINVOCATION = 43;
050  public int JJTCONDITIONALBRANCHING = 44;
051  public int JJTCASE = 45;
052  public int JJTMATCH = 46;
053
054
055  public String[] jjtNodeName = {
056    "error",
057    "void",
058    "CompilationUnit",
059    "ModuleDeclaration",
060    "ImportDeclaration",
061    "ToplevelDeclaration",
062    "MemberDeclaration",
063    "StructDeclaration",
064    "UnionValue",
065    "UnionDeclaration",
066    "NamedAugmentationDeclaration",
067    "AugmentDeclaration",
068    "FunctionDeclaration",
069    "DecoratorDeclaration",
070    "Continue",
071    "Break",
072    "Throw",
073    "WhileLoop",
074    "ForLoop",
075    "ForEachLoop",
076    "TryCatchFinally",
077    "ExpressionStatement",
078    "UnaryExpression",
079    "InvocationExpression",
080    "MultiplicativeExpression",
081    "AdditiveExpression",
082    "RelationalExpression",
083    "EqualityExpression",
084    "AndExpression",
085    "OrExpression",
086    "OrIfNullExpression",
087    "MethodInvocation",
088    "Block",
089    "Function",
090    "Literal",
091    "CollectionLiteral",
092    "Reference",
093    "DestructuringAssignment",
094    "LetOrVar",
095    "Assignment",
096    "Return",
097    "Argument",
098    "AnonymousFunctionInvocation",
099    "FunctionInvocation",
100    "ConditionalBranching",
101    "Case",
102    "Match",
103  };
104}
105/* JavaCC - OriginalChecksum=9df0d59609109f31b5801cbb1ea84310 (do not edit this line) */