home *** CD-ROM | disk | FTP | other *** search
- package espresso;
-
- interface Symbols {
- byte lastSy = 111;
- byte EofSy = 111;
- byte NoSy = 110;
- byte RightArrow = 109;
- byte SeqSy = 108;
- byte FunSy = 107;
- byte NullSy = 106;
- byte VoidSy = 105;
- byte ShortSy = 104;
- byte LongSy = 103;
- byte IntSy = 102;
- byte FloatSy = 101;
- byte DoubleSy = 100;
- byte CharSy = 99;
- byte ByteSy = 98;
- byte BooleanSy = 97;
- byte InstanceofSy = 96;
- byte WhileSy = 95;
- byte TrySy = 94;
- byte TransientSy = 93;
- byte ThrowsSy = 92;
- byte ThrowSy = 91;
- byte VolatileSy = 90;
- byte ThisSy = 89;
- byte SynchronizedSy = 88;
- byte SwitchSy = 87;
- byte SuperSy = 86;
- byte StaticSy = 85;
- byte ReturnSy = 84;
- byte PublicSy = 83;
- byte ProtectedSy = 82;
- byte PrivateSy = 81;
- byte PackageSy = 80;
- byte NewSy = 79;
- byte NativeSy = 78;
- byte InterfaceSy = 77;
- byte ImportSy = 76;
- byte ImplementsSy = 75;
- byte IfSy = 74;
- byte ForSy = 73;
- byte FinallySy = 72;
- byte FinalSy = 71;
- byte ExtendsSy = 70;
- byte ElseSy = 69;
- byte DoSy = 68;
- byte DefaultSy = 67;
- byte ContinueSy = 66;
- byte ConstSy = 65;
- byte ClassSy = 64;
- byte CatchSy = 63;
- byte CaseSy = 62;
- byte BreakSy = 61;
- byte AbstractSy = 60;
- byte AmpersandAmpersand = 56;
- byte BarBar = 55;
- byte GreaterGreaterGreaterEquals = 54;
- byte GreaterGreaterEquals = 53;
- byte LessLessEquals = 52;
- byte PercentEquals = 51;
- byte UparrowEquals = 50;
- byte BarEquals = 49;
- byte AmpersandEquals = 48;
- byte SlashEquals = 47;
- byte StarEquals = 46;
- byte MinusEquals = 45;
- byte PlusEquals = 44;
- byte GreaterGreaterGreater = 43;
- byte GreaterGreater = 42;
- byte LessLess = 41;
- byte BangEquals = 40;
- byte GreaterEquals = 39;
- byte LessEquals = 38;
- byte EqualsEquals = 37;
- byte MinusMinus = 36;
- byte PlusPlus = 35;
- byte Equals = 34;
- byte Colon = 33;
- byte Questionmark = 32;
- byte Less = 31;
- byte Greater = 30;
- byte Slash = 29;
- byte Tilde = 28;
- byte Bar = 27;
- byte Star = 26;
- byte Ampersand = 25;
- byte Uparrow = 24;
- byte Percent = 23;
- byte Bang = 22;
- byte Minus = 21;
- byte Plus = 20;
- byte Rbrace = 18;
- byte Lbrace = 17;
- byte Rbrack = 16;
- byte Lbrack = 15;
- byte Rparen = 14;
- byte Lparen = 13;
- byte Semicolon = 12;
- byte Comma = 11;
- byte Period = 10;
- byte DoubleLit = 7;
- byte FloatLit = 6;
- byte LongLit = 5;
- byte IntLit = 4;
- byte StringLit = 3;
- byte CharLit = 2;
- // $FF: renamed from: Id byte
- byte field_0 = 1;
- }
-