PageRenderTime 25ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre3/bsh/ParserConstants.java

#
Java | 253 lines | 247 code | 5 blank | 1 comment | 0 complexity | 4ad243894a5962b922d8054b9411516e MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /* Generated By:JJTree&JavaCC: Do not edit this line. ParserConstants.java */
  2. package bsh;
  3. public interface ParserConstants {
  4. int EOF = 0;
  5. int NONPRINTABLE = 6;
  6. int SINGLE_LINE_COMMENT = 7;
  7. int HASH_BANG_COMMENT = 8;
  8. int FORMAL_COMMENT = 9;
  9. int MULTI_LINE_COMMENT = 10;
  10. int BOOLEAN = 11;
  11. int BREAK = 12;
  12. int CLASS = 13;
  13. int BYTE = 14;
  14. int CASE = 15;
  15. int CATCH = 16;
  16. int CHAR = 17;
  17. int CONST = 18;
  18. int CONTINUE = 19;
  19. int _DEFAULT = 20;
  20. int DO = 21;
  21. int DOUBLE = 22;
  22. int ELSE = 23;
  23. int FALSE = 24;
  24. int FINAL = 25;
  25. int FINALLY = 26;
  26. int FLOAT = 27;
  27. int FOR = 28;
  28. int GOTO = 29;
  29. int IF = 30;
  30. int IMPORT = 31;
  31. int INSTANCEOF = 32;
  32. int INT = 33;
  33. int INTERFACE = 34;
  34. int LONG = 35;
  35. int NEW = 36;
  36. int NULL = 37;
  37. int PRIVATE = 38;
  38. int PROTECTED = 39;
  39. int PUBLIC = 40;
  40. int RETURN = 41;
  41. int SHORT = 42;
  42. int STATIC = 43;
  43. int SWITCH = 44;
  44. int THROW = 45;
  45. int TRUE = 46;
  46. int TRY = 47;
  47. int VOID = 48;
  48. int WHILE = 49;
  49. int INTEGER_LITERAL = 50;
  50. int DECIMAL_LITERAL = 51;
  51. int HEX_LITERAL = 52;
  52. int OCTAL_LITERAL = 53;
  53. int FLOATING_POINT_LITERAL = 54;
  54. int EXPONENT = 55;
  55. int CHARACTER_LITERAL = 56;
  56. int STRING_LITERAL = 57;
  57. int IDENTIFIER = 58;
  58. int LETTER = 59;
  59. int DIGIT = 60;
  60. int LPAREN = 61;
  61. int RPAREN = 62;
  62. int LBRACE = 63;
  63. int RBRACE = 64;
  64. int LBRACKET = 65;
  65. int RBRACKET = 66;
  66. int SEMICOLON = 67;
  67. int COMMA = 68;
  68. int DOT = 69;
  69. int ASSIGN = 70;
  70. int GT = 71;
  71. int GTX = 72;
  72. int LT = 73;
  73. int LTX = 74;
  74. int BANG = 75;
  75. int TILDE = 76;
  76. int HOOK = 77;
  77. int COLON = 78;
  78. int EQ = 79;
  79. int LE = 80;
  80. int LEX = 81;
  81. int GE = 82;
  82. int GEX = 83;
  83. int NE = 84;
  84. int BOOL_OR = 85;
  85. int BOOL_ORX = 86;
  86. int BOOL_AND = 87;
  87. int BOOL_ANDX = 88;
  88. int INCR = 89;
  89. int DECR = 90;
  90. int PLUS = 91;
  91. int MINUS = 92;
  92. int STAR = 93;
  93. int SLASH = 94;
  94. int BIT_AND = 95;
  95. int BIT_ANDX = 96;
  96. int BIT_OR = 97;
  97. int BIT_ORX = 98;
  98. int XOR = 99;
  99. int MOD = 100;
  100. int LSHIFT = 101;
  101. int LSHIFTX = 102;
  102. int RSIGNEDSHIFT = 103;
  103. int RSIGNEDSHIFTX = 104;
  104. int RUNSIGNEDSHIFT = 105;
  105. int RUNSIGNEDSHIFTX = 106;
  106. int PLUSASSIGN = 107;
  107. int MINUSASSIGN = 108;
  108. int STARASSIGN = 109;
  109. int SLASHASSIGN = 110;
  110. int ANDASSIGN = 111;
  111. int ANDASSIGNX = 112;
  112. int ORASSIGN = 113;
  113. int ORASSIGNX = 114;
  114. int XORASSIGN = 115;
  115. int MODASSIGN = 116;
  116. int LSHIFTASSIGN = 117;
  117. int LSHIFTASSIGNX = 118;
  118. int RSIGNEDSHIFTASSIGN = 119;
  119. int RSIGNEDSHIFTASSIGNX = 120;
  120. int RUNSIGNEDSHIFTASSIGN = 121;
  121. int RUNSIGNEDSHIFTASSIGNX = 122;
  122. int DEFAULT = 0;
  123. String[] tokenImage = {
  124. "<EOF>",
  125. "\" \"",
  126. "\"\\t\"",
  127. "\"\\r\"",
  128. "\"\\f\"",
  129. "\"\\n\"",
  130. "<NONPRINTABLE>",
  131. "<SINGLE_LINE_COMMENT>",
  132. "<HASH_BANG_COMMENT>",
  133. "<FORMAL_COMMENT>",
  134. "<MULTI_LINE_COMMENT>",
  135. "\"boolean\"",
  136. "\"break\"",
  137. "\"class\"",
  138. "\"byte\"",
  139. "\"case\"",
  140. "\"catch\"",
  141. "\"char\"",
  142. "\"const\"",
  143. "\"continue\"",
  144. "\"default\"",
  145. "\"do\"",
  146. "\"double\"",
  147. "\"else\"",
  148. "\"false\"",
  149. "\"final\"",
  150. "\"finally\"",
  151. "\"float\"",
  152. "\"for\"",
  153. "\"goto\"",
  154. "\"if\"",
  155. "\"import\"",
  156. "\"instanceof\"",
  157. "\"int\"",
  158. "\"interface\"",
  159. "\"long\"",
  160. "\"new\"",
  161. "\"null\"",
  162. "\"private\"",
  163. "\"protected\"",
  164. "\"public\"",
  165. "\"return\"",
  166. "\"short\"",
  167. "\"static\"",
  168. "\"switch\"",
  169. "\"throw\"",
  170. "\"true\"",
  171. "\"try\"",
  172. "\"void\"",
  173. "\"while\"",
  174. "<INTEGER_LITERAL>",
  175. "<DECIMAL_LITERAL>",
  176. "<HEX_LITERAL>",
  177. "<OCTAL_LITERAL>",
  178. "<FLOATING_POINT_LITERAL>",
  179. "<EXPONENT>",
  180. "<CHARACTER_LITERAL>",
  181. "<STRING_LITERAL>",
  182. "<IDENTIFIER>",
  183. "<LETTER>",
  184. "<DIGIT>",
  185. "\"(\"",
  186. "\")\"",
  187. "\"{\"",
  188. "\"}\"",
  189. "\"[\"",
  190. "\"]\"",
  191. "\";\"",
  192. "\",\"",
  193. "\".\"",
  194. "\"=\"",
  195. "\">\"",
  196. "\"@gt\"",
  197. "\"<\"",
  198. "\"@lt\"",
  199. "\"!\"",
  200. "\"~\"",
  201. "\"?\"",
  202. "\":\"",
  203. "\"==\"",
  204. "\"<=\"",
  205. "\"@lteq\"",
  206. "\">=\"",
  207. "\"@gteq\"",
  208. "\"!=\"",
  209. "\"||\"",
  210. "\"@or\"",
  211. "\"&&\"",
  212. "\"@and\"",
  213. "\"++\"",
  214. "\"--\"",
  215. "\"+\"",
  216. "\"-\"",
  217. "\"*\"",
  218. "\"/\"",
  219. "\"&\"",
  220. "\"@bitwise_and\"",
  221. "\"|\"",
  222. "\"@bitwise_or\"",
  223. "\"^\"",
  224. "\"%\"",
  225. "\"<<\"",
  226. "\"@left_shift\"",
  227. "\">>\"",
  228. "\"@right_shift\"",
  229. "\">>>\"",
  230. "\"@right_unsigned_shift\"",
  231. "\"+=\"",
  232. "\"-=\"",
  233. "\"*=\"",
  234. "\"/=\"",
  235. "\"&=\"",
  236. "\"@and_assign\"",
  237. "\"|=\"",
  238. "\"@or_assign\"",
  239. "\"^=\"",
  240. "\"%=\"",
  241. "\"<<=\"",
  242. "\"@left_shift_assign\"",
  243. "\">>=\"",
  244. "\"@right_shift_assign\"",
  245. "\">>>=\"",
  246. "\"@right_unsigned_shift_assign\"",
  247. };
  248. }