ActionLexer.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:58k
源码类别:

编译器/解释器

开发平台:

Others

  1. // $ANTLR 2.7.0a12: "action.g" -> "ActionLexer.java"$
  2. package antlr.actions.java;
  3. import java.io.InputStream;
  4. import antlr.TokenStreamException;
  5. import antlr.TokenStreamIOException;
  6. import antlr.TokenStreamRecognitionException;
  7. import antlr.CharStreamException;
  8. import antlr.CharStreamIOException;
  9. import antlr.ANTLRException;
  10. import java.io.Reader;
  11. import java.util.Hashtable;
  12. import antlr.CharScanner;
  13. import antlr.InputBuffer;
  14. import antlr.ByteBuffer;
  15. import antlr.CharBuffer;
  16. import antlr.Token;
  17. import antlr.CommonToken;
  18. import antlr.RecognitionException;
  19. import antlr.NoViableAltForCharException;
  20. import antlr.MismatchedCharException;
  21. import antlr.TokenStream;
  22. import antlr.ANTLRHashString;
  23. import antlr.LexerSharedInputState;
  24. import antlr.collections.impl.BitSet;
  25. import antlr.SemanticException;
  26. import java.io.StringReader;
  27. import antlr.collections.impl.Vector;
  28. import antlr.*;
  29. /** Perform the following translations:
  30.     AST related translations
  31. ## -> currentRule_AST
  32. #(x,y,z) -> codeGenerator.getASTCreateString(vector-of(x,y,z))
  33. #[x] -> codeGenerator.getASTCreateString(x)
  34. #x -> codeGenerator.mapTreeId(x)
  35. Inside context of #(...), you can ref (x,y,z), [x], and x as shortcuts.
  36.     Text related translations
  37. $append(x) -> text.append(x)
  38. $setText(x) -> text.setLength(_begin); text.append(x)
  39. $getText -> new String(text.getBuffer(),_begin,text.length()-_begin)
  40. $setToken(x) -> _token = x
  41. $setType(x) -> _ttype = x
  42.  */
  43. public class ActionLexer extends antlr.CharScanner implements ActionLexerTokenTypes, TokenStream
  44.  {
  45. protected RuleBlock currentRule;
  46. protected CodeGenerator generator;
  47. protected int lineOffset = 0;
  48. private Tool tool; // The ANTLR tool
  49. ActionTransInfo transInfo;
  50.   public ActionLexer( String s,
  51. RuleBlock currentRule,
  52. CodeGenerator generator,
  53. ActionTransInfo transInfo) {
  54. this(new StringReader(s));
  55. this.currentRule = currentRule;
  56. this.generator = generator;
  57. this.transInfo = transInfo;
  58. }
  59. public void setLineOffset(int lineOffset) {
  60. // this.lineOffset = lineOffset;
  61. setLine(lineOffset);
  62. }
  63. public void setTool(Tool tool) {
  64. this.tool = tool;
  65. }
  66. // Override of error-reporting for syntax
  67. public void reportError(RecognitionException e) {
  68. System.err.print("Syntax error in action: ");
  69. super.reportError(e);
  70. }
  71. public ActionLexer(InputStream in) {
  72. this(new ByteBuffer(in));
  73. }
  74. public ActionLexer(Reader in) {
  75. this(new CharBuffer(in));
  76. }
  77. public ActionLexer(InputBuffer ib) {
  78. this(new LexerSharedInputState(ib));
  79. }
  80. public ActionLexer(LexerSharedInputState state) {
  81. super(state);
  82. literals = new Hashtable();
  83. caseSensitiveLiterals = true;
  84. setCaseSensitive(true);
  85. }
  86. public Token nextToken() throws TokenStreamException {
  87. Token theRetToken=null;
  88. tryAgain:
  89. for (;;) {
  90. Token _token = null;
  91. int _ttype = Token.INVALID_TYPE;
  92. resetText();
  93. try {   // for char stream error handling
  94. try {   // for lexical error handling
  95. if (((LA(1) >= '3' && LA(1) <= '~'))) {
  96. mACTION(true);
  97. theRetToken=_returnToken;
  98. }
  99. else {
  100. if (LA(1)==EOF_CHAR) {uponEOF(); _returnToken = makeToken(Token.EOF_TYPE);}
  101. else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  102. }
  103. if ( _returnToken==null ) continue tryAgain; // found SKIP token
  104. _ttype = _returnToken.getType();
  105. _returnToken.setType(_ttype);
  106. return _returnToken;
  107. }
  108. catch (RecognitionException e) {
  109. throw new TokenStreamRecognitionException(e);
  110. }
  111. }
  112. catch (CharStreamException cse) {
  113. if ( cse instanceof CharStreamIOException ) {
  114. throw new TokenStreamIOException(((CharStreamIOException)cse).io);
  115. }
  116. else {
  117. throw new TokenStreamException(cse.getMessage());
  118. }
  119. }
  120. }
  121. }
  122. public final void mACTION(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  123. int _ttype; Token _token=null; int _begin=text.length();
  124. _ttype = ACTION;
  125. int _saveIndex;
  126. {
  127. int _cnt3=0;
  128. _loop3:
  129. do {
  130. switch ( LA(1)) {
  131. case '3':  case '4':  case '5':  case '6':
  132. case '7':  case '10':  case 't':  case 'n':
  133. case '13':  case '14':  case 'r':  case '16':
  134. case '17':  case '20':  case '21':  case '22':
  135. case '23':  case '24':  case '25':  case '26':
  136. case '27':  case '30':  case '31':  case '32':
  137. case '33':  case '34':  case '35':  case '36':
  138. case '37':  case ' ':  case '!':  case '"':
  139. case '%':  case '&':  case ''':  case '(':
  140. case ')':  case '*':  case '+':  case ',':
  141. case '-':  case '.':  case '/':  case '0':
  142. case '1':  case '2':  case '3':  case '4':
  143. case '5':  case '6':  case '7':  case '8':
  144. case '9':  case ':':  case ';':  case '<':
  145. case '=':  case '>':  case '?':  case '@':
  146. case 'A':  case 'B':  case 'C':  case 'D':
  147. case 'E':  case 'F':  case 'G':  case 'H':
  148. case 'I':  case 'J':  case 'K':  case 'L':
  149. case 'M':  case 'N':  case 'O':  case 'P':
  150. case 'Q':  case 'R':  case 'S':  case 'T':
  151. case 'U':  case 'V':  case 'W':  case 'X':
  152. case 'Y':  case 'Z':  case '[':  case '\':
  153. case ']':  case '^':  case '_':  case '`':
  154. case 'a':  case 'b':  case 'c':  case 'd':
  155. case 'e':  case 'f':  case 'g':  case 'h':
  156. case 'i':  case 'j':  case 'k':  case 'l':
  157. case 'm':  case 'n':  case 'o':  case 'p':
  158. case 'q':  case 'r':  case 's':  case 't':
  159. case 'u':  case 'v':  case 'w':  case 'x':
  160. case 'y':  case 'z':  case '{':  case '|':
  161. case '}':  case '~':
  162. {
  163. mSTUFF(false);
  164. break;
  165. }
  166. case '#':
  167. {
  168. mAST_ITEM(false);
  169. break;
  170. }
  171. case '$':
  172. {
  173. mTEXT_ITEM(false);
  174. break;
  175. }
  176. default:
  177. {
  178. if ( _cnt3>=1 ) { break _loop3; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  179. }
  180. }
  181. _cnt3++;
  182. } while (true);
  183. }
  184. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  185. _token = makeToken(_ttype);
  186. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  187. }
  188. _returnToken = _token;
  189. }
  190. protected final void mSTUFF(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  191. int _ttype; Token _token=null; int _begin=text.length();
  192. _ttype = STUFF;
  193. int _saveIndex;
  194. switch ( LA(1)) {
  195. case '"':
  196. {
  197. mSTRING(false);
  198. break;
  199. }
  200. case ''':
  201. {
  202. mCHAR(false);
  203. break;
  204. }
  205. case 'n':
  206. {
  207. match('n');
  208. newline();
  209. break;
  210. }
  211. case '3':  case '4':  case '5':  case '6':
  212. case '7':  case '10':  case 't':  case '13':
  213. case '14':  case '16':  case '17':  case '20':
  214. case '21':  case '22':  case '23':  case '24':
  215. case '25':  case '26':  case '27':  case '30':
  216. case '31':  case '32':  case '33':  case '34':
  217. case '35':  case '36':  case '37':  case ' ':
  218. case '!':  case '%':  case '&':  case '(':
  219. case ')':  case '*':  case '+':  case ',':
  220. case '-':  case '.':  case '0':  case '1':
  221. case '2':  case '3':  case '4':  case '5':
  222. case '6':  case '7':  case '8':  case '9':
  223. case ':':  case ';':  case '<':  case '=':
  224. case '>':  case '?':  case '@':  case 'A':
  225. case 'B':  case 'C':  case 'D':  case 'E':
  226. case 'F':  case 'G':  case 'H':  case 'I':
  227. case 'J':  case 'K':  case 'L':  case 'M':
  228. case 'N':  case 'O':  case 'P':  case 'Q':
  229. case 'R':  case 'S':  case 'T':  case 'U':
  230. case 'V':  case 'W':  case 'X':  case 'Y':
  231. case 'Z':  case '[':  case '\':  case ']':
  232. case '^':  case '_':  case '`':  case 'a':
  233. case 'b':  case 'c':  case 'd':  case 'e':
  234. case 'f':  case 'g':  case 'h':  case 'i':
  235. case 'j':  case 'k':  case 'l':  case 'm':
  236. case 'n':  case 'o':  case 'p':  case 'q':
  237. case 'r':  case 's':  case 't':  case 'u':
  238. case 'v':  case 'w':  case 'x':  case 'y':
  239. case 'z':  case '{':  case '|':  case '}':
  240. case '~':
  241. {
  242. {
  243. match(_tokenSet_0);
  244. }
  245. break;
  246. }
  247. default:
  248. if ((LA(1)=='/') && (LA(2)=='*'||LA(2)=='/')) {
  249. mCOMMENT(false);
  250. }
  251. else if ((LA(1)=='r') && (LA(2)=='n')) {
  252. match("rn");
  253. newline();
  254. }
  255. else if ((LA(1)=='/') && (_tokenSet_1.member(LA(2)))) {
  256. match('/');
  257. {
  258. match(_tokenSet_1);
  259. }
  260. }
  261. else if ((LA(1)=='r') && (true)) {
  262. match('r');
  263. newline();
  264. }
  265. else {
  266. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  267. }
  268. }
  269. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  270. _token = makeToken(_ttype);
  271. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  272. }
  273. _returnToken = _token;
  274. }
  275. protected final void mAST_ITEM(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  276. int _ttype; Token _token=null; int _begin=text.length();
  277. _ttype = AST_ITEM;
  278. int _saveIndex;
  279. Token t=null;
  280. Token id=null;
  281. Token ctor=null;
  282. if ((LA(1)=='#') && (LA(2)=='(')) {
  283. _saveIndex=text.length();
  284. match('#');
  285. text.setLength(_saveIndex);
  286. mTREE(true);
  287. t=_returnToken;
  288. }
  289. else if ((LA(1)=='#') && (_tokenSet_2.member(LA(2)))) {
  290. _saveIndex=text.length();
  291. match('#');
  292. text.setLength(_saveIndex);
  293. mID(true);
  294. id=_returnToken;
  295. String idt = id.getText();
  296. text.setLength(_begin); text.append(generator.mapTreeId(idt,transInfo));
  297. {
  298. if ((_tokenSet_3.member(LA(1))) && (true)) {
  299. mWS(false);
  300. }
  301. else {
  302. }
  303. }
  304. {
  305. if ((LA(1)=='=') && (true)) {
  306. mVAR_ASSIGN(false);
  307. }
  308. else {
  309. }
  310. }
  311. }
  312. else if ((LA(1)=='#') && (LA(2)=='[')) {
  313. _saveIndex=text.length();
  314. match('#');
  315. text.setLength(_saveIndex);
  316. mAST_CONSTRUCTOR(true);
  317. ctor=_returnToken;
  318. }
  319. else if ((LA(1)=='#') && (LA(2)=='#')) {
  320. match("##");
  321. String r=currentRule.getRuleName()+"_AST"; text.setLength(_begin); text.append(r);
  322. if ( transInfo!=null ) {
  323. transInfo.refRuleRoot=r; // we ref root of tree
  324. }
  325. {
  326. if ((_tokenSet_3.member(LA(1))) && (true)) {
  327. mWS(false);
  328. }
  329. else {
  330. }
  331. }
  332. {
  333. if ((LA(1)=='=') && (true)) {
  334. mVAR_ASSIGN(false);
  335. }
  336. else {
  337. }
  338. }
  339. }
  340. else {
  341. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  342. }
  343. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  344. _token = makeToken(_ttype);
  345. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  346. }
  347. _returnToken = _token;
  348. }
  349. protected final void mTEXT_ITEM(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  350. int _ttype; Token _token=null; int _begin=text.length();
  351. _ttype = TEXT_ITEM;
  352. int _saveIndex;
  353. Token a1=null;
  354. Token a2=null;
  355. Token a3=null;
  356. Token a4=null;
  357. if ((LA(1)=='$') && (LA(2)=='a')) {
  358. match("$append(");
  359. mTEXT_ARG(true);
  360. a1=_returnToken;
  361. match(')');
  362. String t = "text.append("+a1.getText()+")"; text.setLength(_begin); text.append(t);
  363. }
  364. else if ((LA(1)=='$') && (LA(2)=='s')) {
  365. match("$set");
  366. {
  367. if ((LA(1)=='T') && (LA(2)=='e')) {
  368. match("Text(");
  369. mTEXT_ARG(true);
  370. a2=_returnToken;
  371. match(')');
  372. String t;
  373. if (generator instanceof CppCodeGenerator) {
  374. t="text.erase(_begin); text.append("+a2.getText()+")";
  375. } else {
  376. t="text.setLength(_begin); text.append("+a2.getText()+")";
  377. }
  378. text.setLength(_begin); text.append(t);
  379. }
  380. else if ((LA(1)=='T') && (LA(2)=='o')) {
  381. match("Token(");
  382. mTEXT_ARG(true);
  383. a3=_returnToken;
  384. match(')');
  385. String t="_token = "+a3.getText();
  386. text.setLength(_begin); text.append(t);
  387. }
  388. else if ((LA(1)=='T') && (LA(2)=='y')) {
  389. match("Type(");
  390. mTEXT_ARG(true);
  391. a4=_returnToken;
  392. match(')');
  393. String t="_ttype = "+a4.getText();
  394. text.setLength(_begin); text.append(t);
  395. }
  396. else {
  397. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  398. }
  399. }
  400. }
  401. else if ((LA(1)=='$') && (LA(2)=='g')) {
  402. match("$getText");
  403. if (generator instanceof CppCodeGenerator) {
  404. text.setLength(_begin); text.append("text.substr(_begin,text.length()-_begin)");
  405. } else {
  406. text.setLength(_begin); text.append("new String(text.getBuffer(),_begin,text.length()-_begin)");
  407. }
  408. }
  409. else {
  410. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  411. }
  412. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  413. _token = makeToken(_ttype);
  414. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  415. }
  416. _returnToken = _token;
  417. }
  418. protected final void mCOMMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  419. int _ttype; Token _token=null; int _begin=text.length();
  420. _ttype = COMMENT;
  421. int _saveIndex;
  422. if ((LA(1)=='/') && (LA(2)=='/')) {
  423. mSL_COMMENT(false);
  424. }
  425. else if ((LA(1)=='/') && (LA(2)=='*')) {
  426. mML_COMMENT(false);
  427. }
  428. else {
  429. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  430. }
  431. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  432. _token = makeToken(_ttype);
  433. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  434. }
  435. _returnToken = _token;
  436. }
  437. protected final void mSTRING(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  438. int _ttype; Token _token=null; int _begin=text.length();
  439. _ttype = STRING;
  440. int _saveIndex;
  441. match('"');
  442. {
  443. _loop87:
  444. do {
  445. switch ( LA(1)) {
  446. case '\':
  447. {
  448. mESC(false);
  449. break;
  450. }
  451. case '3':  case '4':  case '5':  case '6':
  452. case '7':  case '10':  case 't':  case 'n':
  453. case '13':  case '14':  case 'r':  case '16':
  454. case '17':  case '20':  case '21':  case '22':
  455. case '23':  case '24':  case '25':  case '26':
  456. case '27':  case '30':  case '31':  case '32':
  457. case '33':  case '34':  case '35':  case '36':
  458. case '37':  case ' ':  case '!':  case '#':
  459. case '$':  case '%':  case '&':  case ''':
  460. case '(':  case ')':  case '*':  case '+':
  461. case ',':  case '-':  case '.':  case '/':
  462. case '0':  case '1':  case '2':  case '3':
  463. case '4':  case '5':  case '6':  case '7':
  464. case '8':  case '9':  case ':':  case ';':
  465. case '<':  case '=':  case '>':  case '?':
  466. case '@':  case 'A':  case 'B':  case 'C':
  467. case 'D':  case 'E':  case 'F':  case 'G':
  468. case 'H':  case 'I':  case 'J':  case 'K':
  469. case 'L':  case 'M':  case 'N':  case 'O':
  470. case 'P':  case 'Q':  case 'R':  case 'S':
  471. case 'T':  case 'U':  case 'V':  case 'W':
  472. case 'X':  case 'Y':  case 'Z':  case '[':
  473. case ']':  case '^':  case '_':  case '`':
  474. case 'a':  case 'b':  case 'c':  case 'd':
  475. case 'e':  case 'f':  case 'g':  case 'h':
  476. case 'i':  case 'j':  case 'k':  case 'l':
  477. case 'm':  case 'n':  case 'o':  case 'p':
  478. case 'q':  case 'r':  case 's':  case 't':
  479. case 'u':  case 'v':  case 'w':  case 'x':
  480. case 'y':  case 'z':  case '{':  case '|':
  481. case '}':  case '~':
  482. {
  483. matchNot('"');
  484. break;
  485. }
  486. default:
  487. {
  488. break _loop87;
  489. }
  490. }
  491. } while (true);
  492. }
  493. match('"');
  494. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  495. _token = makeToken(_ttype);
  496. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  497. }
  498. _returnToken = _token;
  499. }
  500. protected final void mCHAR(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  501. int _ttype; Token _token=null; int _begin=text.length();
  502. _ttype = CHAR;
  503. int _saveIndex;
  504. match(''');
  505. {
  506. switch ( LA(1)) {
  507. case '\':
  508. {
  509. mESC(false);
  510. break;
  511. }
  512. case '3':  case '4':  case '5':  case '6':
  513. case '7':  case '10':  case 't':  case 'n':
  514. case '13':  case '14':  case 'r':  case '16':
  515. case '17':  case '20':  case '21':  case '22':
  516. case '23':  case '24':  case '25':  case '26':
  517. case '27':  case '30':  case '31':  case '32':
  518. case '33':  case '34':  case '35':  case '36':
  519. case '37':  case ' ':  case '!':  case '"':
  520. case '#':  case '$':  case '%':  case '&':
  521. case '(':  case ')':  case '*':  case '+':
  522. case ',':  case '-':  case '.':  case '/':
  523. case '0':  case '1':  case '2':  case '3':
  524. case '4':  case '5':  case '6':  case '7':
  525. case '8':  case '9':  case ':':  case ';':
  526. case '<':  case '=':  case '>':  case '?':
  527. case '@':  case 'A':  case 'B':  case 'C':
  528. case 'D':  case 'E':  case 'F':  case 'G':
  529. case 'H':  case 'I':  case 'J':  case 'K':
  530. case 'L':  case 'M':  case 'N':  case 'O':
  531. case 'P':  case 'Q':  case 'R':  case 'S':
  532. case 'T':  case 'U':  case 'V':  case 'W':
  533. case 'X':  case 'Y':  case 'Z':  case '[':
  534. case ']':  case '^':  case '_':  case '`':
  535. case 'a':  case 'b':  case 'c':  case 'd':
  536. case 'e':  case 'f':  case 'g':  case 'h':
  537. case 'i':  case 'j':  case 'k':  case 'l':
  538. case 'm':  case 'n':  case 'o':  case 'p':
  539. case 'q':  case 'r':  case 's':  case 't':
  540. case 'u':  case 'v':  case 'w':  case 'x':
  541. case 'y':  case 'z':  case '{':  case '|':
  542. case '}':  case '~':
  543. {
  544. matchNot(''');
  545. break;
  546. }
  547. default:
  548. {
  549. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  550. }
  551. }
  552. }
  553. match(''');
  554. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  555. _token = makeToken(_ttype);
  556. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  557. }
  558. _returnToken = _token;
  559. }
  560. protected final void mTREE(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  561. int _ttype; Token _token=null; int _begin=text.length();
  562. _ttype = TREE;
  563. int _saveIndex;
  564. Token t=null;
  565. Token t2=null;
  566. StringBuffer buf = new StringBuffer();
  567. int n=0;
  568. Vector terms = new Vector(10);
  569. _saveIndex=text.length();
  570. match('(');
  571. text.setLength(_saveIndex);
  572. {
  573. switch ( LA(1)) {
  574. case 't':  case 'n':  case 'r':  case ' ':
  575. {
  576. _saveIndex=text.length();
  577. mWS(false);
  578. text.setLength(_saveIndex);
  579. break;
  580. }
  581. case '"':  case '#':  case '(':  case 'A':
  582. case 'B':  case 'C':  case 'D':  case 'E':
  583. case 'F':  case 'G':  case 'H':  case 'I':
  584. case 'J':  case 'K':  case 'L':  case 'M':
  585. case 'N':  case 'O':  case 'P':  case 'Q':
  586. case 'R':  case 'S':  case 'T':  case 'U':
  587. case 'V':  case 'W':  case 'X':  case 'Y':
  588. case 'Z':  case '[':  case '_':  case 'a':
  589. case 'b':  case 'c':  case 'd':  case 'e':
  590. case 'f':  case 'g':  case 'h':  case 'i':
  591. case 'j':  case 'k':  case 'l':  case 'm':
  592. case 'n':  case 'o':  case 'p':  case 'q':
  593. case 'r':  case 's':  case 't':  case 'u':
  594. case 'v':  case 'w':  case 'x':  case 'y':
  595. case 'z':
  596. {
  597. break;
  598. }
  599. default:
  600. {
  601. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  602. }
  603. }
  604. }
  605. _saveIndex=text.length();
  606. mTREE_ELEMENT(true);
  607. text.setLength(_saveIndex);
  608. t=_returnToken;
  609. terms.appendElement(t.getText());
  610. {
  611. switch ( LA(1)) {
  612. case 't':  case 'n':  case 'r':  case ' ':
  613. {
  614. _saveIndex=text.length();
  615. mWS(false);
  616. text.setLength(_saveIndex);
  617. break;
  618. }
  619. case ')':  case ',':
  620. {
  621. break;
  622. }
  623. default:
  624. {
  625. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  626. }
  627. }
  628. }
  629. {
  630. _loop20:
  631. do {
  632. if ((LA(1)==',')) {
  633. _saveIndex=text.length();
  634. match(',');
  635. text.setLength(_saveIndex);
  636. {
  637. switch ( LA(1)) {
  638. case 't':  case 'n':  case 'r':  case ' ':
  639. {
  640. _saveIndex=text.length();
  641. mWS(false);
  642. text.setLength(_saveIndex);
  643. break;
  644. }
  645. case '"':  case '#':  case '(':  case 'A':
  646. case 'B':  case 'C':  case 'D':  case 'E':
  647. case 'F':  case 'G':  case 'H':  case 'I':
  648. case 'J':  case 'K':  case 'L':  case 'M':
  649. case 'N':  case 'O':  case 'P':  case 'Q':
  650. case 'R':  case 'S':  case 'T':  case 'U':
  651. case 'V':  case 'W':  case 'X':  case 'Y':
  652. case 'Z':  case '[':  case '_':  case 'a':
  653. case 'b':  case 'c':  case 'd':  case 'e':
  654. case 'f':  case 'g':  case 'h':  case 'i':
  655. case 'j':  case 'k':  case 'l':  case 'm':
  656. case 'n':  case 'o':  case 'p':  case 'q':
  657. case 'r':  case 's':  case 't':  case 'u':
  658. case 'v':  case 'w':  case 'x':  case 'y':
  659. case 'z':
  660. {
  661. break;
  662. }
  663. default:
  664. {
  665. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  666. }
  667. }
  668. }
  669. _saveIndex=text.length();
  670. mTREE_ELEMENT(true);
  671. text.setLength(_saveIndex);
  672. t2=_returnToken;
  673. terms.appendElement(t2.getText());
  674. {
  675. switch ( LA(1)) {
  676. case 't':  case 'n':  case 'r':  case ' ':
  677. {
  678. _saveIndex=text.length();
  679. mWS(false);
  680. text.setLength(_saveIndex);
  681. break;
  682. }
  683. case ')':  case ',':
  684. {
  685. break;
  686. }
  687. default:
  688. {
  689. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  690. }
  691. }
  692. }
  693. }
  694. else {
  695. break _loop20;
  696. }
  697. } while (true);
  698. }
  699. text.setLength(_begin); text.append(generator.getASTCreateString(terms));
  700. _saveIndex=text.length();
  701. match(')');
  702. text.setLength(_saveIndex);
  703. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  704. _token = makeToken(_ttype);
  705. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  706. }
  707. _returnToken = _token;
  708. }
  709. protected final void mID(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  710. int _ttype; Token _token=null; int _begin=text.length();
  711. _ttype = ID;
  712. int _saveIndex;
  713. {
  714. switch ( LA(1)) {
  715. case 'a':  case 'b':  case 'c':  case 'd':
  716. case 'e':  case 'f':  case 'g':  case 'h':
  717. case 'i':  case 'j':  case 'k':  case 'l':
  718. case 'm':  case 'n':  case 'o':  case 'p':
  719. case 'q':  case 'r':  case 's':  case 't':
  720. case 'u':  case 'v':  case 'w':  case 'x':
  721. case 'y':  case 'z':
  722. {
  723. matchRange('a','z');
  724. break;
  725. }
  726. case 'A':  case 'B':  case 'C':  case 'D':
  727. case 'E':  case 'F':  case 'G':  case 'H':
  728. case 'I':  case 'J':  case 'K':  case 'L':
  729. case 'M':  case 'N':  case 'O':  case 'P':
  730. case 'Q':  case 'R':  case 'S':  case 'T':
  731. case 'U':  case 'V':  case 'W':  case 'X':
  732. case 'Y':  case 'Z':
  733. {
  734. matchRange('A','Z');
  735. break;
  736. }
  737. case '_':
  738. {
  739. match('_');
  740. break;
  741. }
  742. default:
  743. {
  744. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  745. }
  746. }
  747. }
  748. {
  749. _loop73:
  750. do {
  751. if ((_tokenSet_4.member(LA(1))) && (true)) {
  752. {
  753. switch ( LA(1)) {
  754. case 'a':  case 'b':  case 'c':  case 'd':
  755. case 'e':  case 'f':  case 'g':  case 'h':
  756. case 'i':  case 'j':  case 'k':  case 'l':
  757. case 'm':  case 'n':  case 'o':  case 'p':
  758. case 'q':  case 'r':  case 's':  case 't':
  759. case 'u':  case 'v':  case 'w':  case 'x':
  760. case 'y':  case 'z':
  761. {
  762. matchRange('a','z');
  763. break;
  764. }
  765. case 'A':  case 'B':  case 'C':  case 'D':
  766. case 'E':  case 'F':  case 'G':  case 'H':
  767. case 'I':  case 'J':  case 'K':  case 'L':
  768. case 'M':  case 'N':  case 'O':  case 'P':
  769. case 'Q':  case 'R':  case 'S':  case 'T':
  770. case 'U':  case 'V':  case 'W':  case 'X':
  771. case 'Y':  case 'Z':
  772. {
  773. matchRange('A','Z');
  774. break;
  775. }
  776. case '0':  case '1':  case '2':  case '3':
  777. case '4':  case '5':  case '6':  case '7':
  778. case '8':  case '9':
  779. {
  780. matchRange('0','9');
  781. break;
  782. }
  783. case '_':
  784. {
  785. match('_');
  786. break;
  787. }
  788. default:
  789. {
  790. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  791. }
  792. }
  793. }
  794. }
  795. else {
  796. break _loop73;
  797. }
  798. } while (true);
  799. }
  800. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  801. _token = makeToken(_ttype);
  802. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  803. }
  804. _returnToken = _token;
  805. }
  806. protected final void mWS(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  807. int _ttype; Token _token=null; int _begin=text.length();
  808. _ttype = WS;
  809. int _saveIndex;
  810. {
  811. int _cnt107=0;
  812. _loop107:
  813. do {
  814. if ((LA(1)=='r') && (LA(2)=='n')) {
  815. match('r');
  816. match('n');
  817. newline();
  818. }
  819. else if ((LA(1)==' ') && (true)) {
  820. match(' ');
  821. }
  822. else if ((LA(1)=='t') && (true)) {
  823. match('t');
  824. }
  825. else if ((LA(1)=='r') && (true)) {
  826. match('r');
  827. newline();
  828. }
  829. else if ((LA(1)=='n') && (true)) {
  830. match('n');
  831. newline();
  832. }
  833. else {
  834. if ( _cnt107>=1 ) { break _loop107; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  835. }
  836. _cnt107++;
  837. } while (true);
  838. }
  839. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  840. _token = makeToken(_ttype);
  841. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  842. }
  843. _returnToken = _token;
  844. }
  845. protected final void mVAR_ASSIGN(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  846. int _ttype; Token _token=null; int _begin=text.length();
  847. _ttype = VAR_ASSIGN;
  848. int _saveIndex;
  849. match('=');
  850. // inform the code generator that an assignment was done to
  851. // AST root for the rule if invoker set refRuleRoot.
  852. if ( LA(1)!='=' && transInfo!=null && transInfo.refRuleRoot!=null ) {
  853. transInfo.assignToRoot=true;
  854. }
  855. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  856. _token = makeToken(_ttype);
  857. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  858. }
  859. _returnToken = _token;
  860. }
  861. protected final void mAST_CONSTRUCTOR(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  862. int _ttype; Token _token=null; int _begin=text.length();
  863. _ttype = AST_CONSTRUCTOR;
  864. int _saveIndex;
  865. Token x=null;
  866. Token y=null;
  867. _saveIndex=text.length();
  868. match('[');
  869. text.setLength(_saveIndex);
  870. {
  871. switch ( LA(1)) {
  872. case 't':  case 'n':  case 'r':  case ' ':
  873. {
  874. _saveIndex=text.length();
  875. mWS(false);
  876. text.setLength(_saveIndex);
  877. break;
  878. }
  879. case '"':  case '#':  case '(':  case '0':
  880. case '1':  case '2':  case '3':  case '4':
  881. case '5':  case '6':  case '7':  case '8':
  882. case '9':  case 'A':  case 'B':  case 'C':
  883. case 'D':  case 'E':  case 'F':  case 'G':
  884. case 'H':  case 'I':  case 'J':  case 'K':
  885. case 'L':  case 'M':  case 'N':  case 'O':
  886. case 'P':  case 'Q':  case 'R':  case 'S':
  887. case 'T':  case 'U':  case 'V':  case 'W':
  888. case 'X':  case 'Y':  case 'Z':  case '[':
  889. case '_':  case 'a':  case 'b':  case 'c':
  890. case 'd':  case 'e':  case 'f':  case 'g':
  891. case 'h':  case 'i':  case 'j':  case 'k':
  892. case 'l':  case 'm':  case 'n':  case 'o':
  893. case 'p':  case 'q':  case 'r':  case 's':
  894. case 't':  case 'u':  case 'v':  case 'w':
  895. case 'x':  case 'y':  case 'z':
  896. {
  897. break;
  898. }
  899. default:
  900. {
  901. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  902. }
  903. }
  904. }
  905. _saveIndex=text.length();
  906. mAST_CTOR_ELEMENT(true);
  907. text.setLength(_saveIndex);
  908. x=_returnToken;
  909. {
  910. switch ( LA(1)) {
  911. case 't':  case 'n':  case 'r':  case ' ':
  912. {
  913. _saveIndex=text.length();
  914. mWS(false);
  915. text.setLength(_saveIndex);
  916. break;
  917. }
  918. case ',':  case ']':
  919. {
  920. break;
  921. }
  922. default:
  923. {
  924. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  925. }
  926. }
  927. }
  928. {
  929. switch ( LA(1)) {
  930. case ',':
  931. {
  932. _saveIndex=text.length();
  933. match(',');
  934. text.setLength(_saveIndex);
  935. {
  936. switch ( LA(1)) {
  937. case 't':  case 'n':  case 'r':  case ' ':
  938. {
  939. _saveIndex=text.length();
  940. mWS(false);
  941. text.setLength(_saveIndex);
  942. break;
  943. }
  944. case '"':  case '#':  case '(':  case '0':
  945. case '1':  case '2':  case '3':  case '4':
  946. case '5':  case '6':  case '7':  case '8':
  947. case '9':  case 'A':  case 'B':  case 'C':
  948. case 'D':  case 'E':  case 'F':  case 'G':
  949. case 'H':  case 'I':  case 'J':  case 'K':
  950. case 'L':  case 'M':  case 'N':  case 'O':
  951. case 'P':  case 'Q':  case 'R':  case 'S':
  952. case 'T':  case 'U':  case 'V':  case 'W':
  953. case 'X':  case 'Y':  case 'Z':  case '[':
  954. case '_':  case 'a':  case 'b':  case 'c':
  955. case 'd':  case 'e':  case 'f':  case 'g':
  956. case 'h':  case 'i':  case 'j':  case 'k':
  957. case 'l':  case 'm':  case 'n':  case 'o':
  958. case 'p':  case 'q':  case 'r':  case 's':
  959. case 't':  case 'u':  case 'v':  case 'w':
  960. case 'x':  case 'y':  case 'z':
  961. {
  962. break;
  963. }
  964. default:
  965. {
  966. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  967. }
  968. }
  969. }
  970. _saveIndex=text.length();
  971. mAST_CTOR_ELEMENT(true);
  972. text.setLength(_saveIndex);
  973. y=_returnToken;
  974. {
  975. switch ( LA(1)) {
  976. case 't':  case 'n':  case 'r':  case ' ':
  977. {
  978. _saveIndex=text.length();
  979. mWS(false);
  980. text.setLength(_saveIndex);
  981. break;
  982. }
  983. case ']':
  984. {
  985. break;
  986. }
  987. default:
  988. {
  989. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  990. }
  991. }
  992. }
  993. break;
  994. }
  995. case ']':
  996. {
  997. break;
  998. }
  999. default:
  1000. {
  1001. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1002. }
  1003. }
  1004. }
  1005. _saveIndex=text.length();
  1006. match(']');
  1007. text.setLength(_saveIndex);
  1008. String ys = "";
  1009. if ( y!=null ) {
  1010. ys = ","+y.getText();
  1011. }
  1012. text.setLength(_begin); text.append(generator.getASTCreateString(null,x.getText()+ys));
  1013. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1014. _token = makeToken(_ttype);
  1015. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1016. }
  1017. _returnToken = _token;
  1018. }
  1019. protected final void mTEXT_ARG(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1020. int _ttype; Token _token=null; int _begin=text.length();
  1021. _ttype = TEXT_ARG;
  1022. int _saveIndex;
  1023. {
  1024. int _cnt47=0;
  1025. _loop47:
  1026. do {
  1027. if ((_tokenSet_5.member(LA(1))) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1028. mTEXT_ARG_ELEMENT(false);
  1029. {
  1030. if ((_tokenSet_3.member(LA(1))) && (_tokenSet_6.member(LA(2)))) {
  1031. mWS(false);
  1032. }
  1033. else if ((_tokenSet_6.member(LA(1))) && (true)) {
  1034. }
  1035. else {
  1036. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1037. }
  1038. }
  1039. }
  1040. else {
  1041. if ( _cnt47>=1 ) { break _loop47; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  1042. }
  1043. _cnt47++;
  1044. } while (true);
  1045. }
  1046. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1047. _token = makeToken(_ttype);
  1048. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1049. }
  1050. _returnToken = _token;
  1051. }
  1052. protected final void mTREE_ELEMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1053. int _ttype; Token _token=null; int _begin=text.length();
  1054. _ttype = TREE_ELEMENT;
  1055. int _saveIndex;
  1056. Token id=null;
  1057. switch ( LA(1)) {
  1058. case '(':
  1059. {
  1060. mTREE(false);
  1061. break;
  1062. }
  1063. case '[':
  1064. {
  1065. mAST_CONSTRUCTOR(false);
  1066. break;
  1067. }
  1068. case 'A':  case 'B':  case 'C':  case 'D':
  1069. case 'E':  case 'F':  case 'G':  case 'H':
  1070. case 'I':  case 'J':  case 'K':  case 'L':
  1071. case 'M':  case 'N':  case 'O':  case 'P':
  1072. case 'Q':  case 'R':  case 'S':  case 'T':
  1073. case 'U':  case 'V':  case 'W':  case 'X':
  1074. case 'Y':  case 'Z':  case '_':  case 'a':
  1075. case 'b':  case 'c':  case 'd':  case 'e':
  1076. case 'f':  case 'g':  case 'h':  case 'i':
  1077. case 'j':  case 'k':  case 'l':  case 'm':
  1078. case 'n':  case 'o':  case 'p':  case 'q':
  1079. case 'r':  case 's':  case 't':  case 'u':
  1080. case 'v':  case 'w':  case 'x':  case 'y':
  1081. case 'z':
  1082. {
  1083. mID_ELEMENT(false);
  1084. break;
  1085. }
  1086. case '"':
  1087. {
  1088. mSTRING(false);
  1089. break;
  1090. }
  1091. default:
  1092. if ((LA(1)=='#') && (LA(2)=='(')) {
  1093. _saveIndex=text.length();
  1094. match('#');
  1095. text.setLength(_saveIndex);
  1096. mTREE(false);
  1097. }
  1098. else if ((LA(1)=='#') && (LA(2)=='[')) {
  1099. _saveIndex=text.length();
  1100. match('#');
  1101. text.setLength(_saveIndex);
  1102. mAST_CONSTRUCTOR(false);
  1103. }
  1104. else if ((LA(1)=='#') && (_tokenSet_2.member(LA(2)))) {
  1105. _saveIndex=text.length();
  1106. match('#');
  1107. text.setLength(_saveIndex);
  1108. mID_ELEMENT(true);
  1109. id=_returnToken;
  1110. String t=generator.mapTreeId(id.getText(), null); text.setLength(_begin); text.append(t);
  1111. }
  1112. else if ((LA(1)=='#') && (LA(2)=='#')) {
  1113. match("##");
  1114. String t = currentRule.getRuleName()+"_AST"; text.setLength(_begin); text.append(t);
  1115. }
  1116. else {
  1117. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1118. }
  1119. }
  1120. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1121. _token = makeToken(_ttype);
  1122. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1123. }
  1124. _returnToken = _token;
  1125. }
  1126. /** An ID_ELEMENT can be a func call, array ref, simple var,
  1127.  *  or AST label ref.
  1128.  */
  1129. protected final void mID_ELEMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1130. int _ttype; Token _token=null; int _begin=text.length();
  1131. _ttype = ID_ELEMENT;
  1132. int _saveIndex;
  1133. Token id=null;
  1134. mID(true);
  1135. id=_returnToken;
  1136. {
  1137. if ((_tokenSet_3.member(LA(1))) && (_tokenSet_7.member(LA(2)))) {
  1138. _saveIndex=text.length();
  1139. mWS(false);
  1140. text.setLength(_saveIndex);
  1141. }
  1142. else if ((_tokenSet_7.member(LA(1))) && (true)) {
  1143. }
  1144. else {
  1145. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1146. }
  1147. }
  1148. {
  1149. switch ( LA(1)) {
  1150. case '(':
  1151. {
  1152. match('(');
  1153. {
  1154. if ((_tokenSet_3.member(LA(1))) && (_tokenSet_8.member(LA(2)))) {
  1155. _saveIndex=text.length();
  1156. mWS(false);
  1157. text.setLength(_saveIndex);
  1158. }
  1159. else if ((_tokenSet_8.member(LA(1))) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1160. }
  1161. else {
  1162. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1163. }
  1164. }
  1165. {
  1166. switch ( LA(1)) {
  1167. case '"':  case '#':  case ''':  case '(':
  1168. case '0':  case '1':  case '2':  case '3':
  1169. case '4':  case '5':  case '6':  case '7':
  1170. case '8':  case '9':  case 'A':  case 'B':
  1171. case 'C':  case 'D':  case 'E':  case 'F':
  1172. case 'G':  case 'H':  case 'I':  case 'J':
  1173. case 'K':  case 'L':  case 'M':  case 'N':
  1174. case 'O':  case 'P':  case 'Q':  case 'R':
  1175. case 'S':  case 'T':  case 'U':  case 'V':
  1176. case 'W':  case 'X':  case 'Y':  case 'Z':
  1177. case '[':  case '_':  case 'a':  case 'b':
  1178. case 'c':  case 'd':  case 'e':  case 'f':
  1179. case 'g':  case 'h':  case 'i':  case 'j':
  1180. case 'k':  case 'l':  case 'm':  case 'n':
  1181. case 'o':  case 'p':  case 'q':  case 'r':
  1182. case 's':  case 't':  case 'u':  case 'v':
  1183. case 'w':  case 'x':  case 'y':  case 'z':
  1184. {
  1185. mARG(false);
  1186. {
  1187. _loop36:
  1188. do {
  1189. if ((LA(1)==',')) {
  1190. match(',');
  1191. {
  1192. switch ( LA(1)) {
  1193. case 't':  case 'n':  case 'r':  case ' ':
  1194. {
  1195. _saveIndex=text.length();
  1196. mWS(false);
  1197. text.setLength(_saveIndex);
  1198. break;
  1199. }
  1200. case '"':  case '#':  case ''':  case '(':
  1201. case '0':  case '1':  case '2':  case '3':
  1202. case '4':  case '5':  case '6':  case '7':
  1203. case '8':  case '9':  case 'A':  case 'B':
  1204. case 'C':  case 'D':  case 'E':  case 'F':
  1205. case 'G':  case 'H':  case 'I':  case 'J':
  1206. case 'K':  case 'L':  case 'M':  case 'N':
  1207. case 'O':  case 'P':  case 'Q':  case 'R':
  1208. case 'S':  case 'T':  case 'U':  case 'V':
  1209. case 'W':  case 'X':  case 'Y':  case 'Z':
  1210. case '[':  case '_':  case 'a':  case 'b':
  1211. case 'c':  case 'd':  case 'e':  case 'f':
  1212. case 'g':  case 'h':  case 'i':  case 'j':
  1213. case 'k':  case 'l':  case 'm':  case 'n':
  1214. case 'o':  case 'p':  case 'q':  case 'r':
  1215. case 's':  case 't':  case 'u':  case 'v':
  1216. case 'w':  case 'x':  case 'y':  case 'z':
  1217. {
  1218. break;
  1219. }
  1220. default:
  1221. {
  1222. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1223. }
  1224. }
  1225. }
  1226. mARG(false);
  1227. }
  1228. else {
  1229. break _loop36;
  1230. }
  1231. } while (true);
  1232. }
  1233. break;
  1234. }
  1235. case 't':  case 'n':  case 'r':  case ' ':
  1236. case ')':
  1237. {
  1238. break;
  1239. }
  1240. default:
  1241. {
  1242. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1243. }
  1244. }
  1245. }
  1246. {
  1247. switch ( LA(1)) {
  1248. case 't':  case 'n':  case 'r':  case ' ':
  1249. {
  1250. _saveIndex=text.length();
  1251. mWS(false);
  1252. text.setLength(_saveIndex);
  1253. break;
  1254. }
  1255. case ')':
  1256. {
  1257. break;
  1258. }
  1259. default:
  1260. {
  1261. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1262. }
  1263. }
  1264. }
  1265. match(')');
  1266. break;
  1267. }
  1268. case '[':
  1269. {
  1270. {
  1271. int _cnt41=0;
  1272. _loop41:
  1273. do {
  1274. if ((LA(1)=='[')) {
  1275. match('[');
  1276. {
  1277. switch ( LA(1)) {
  1278. case 't':  case 'n':  case 'r':  case ' ':
  1279. {
  1280. _saveIndex=text.length();
  1281. mWS(false);
  1282. text.setLength(_saveIndex);
  1283. break;
  1284. }
  1285. case '"':  case '#':  case ''':  case '(':
  1286. case '0':  case '1':  case '2':  case '3':
  1287. case '4':  case '5':  case '6':  case '7':
  1288. case '8':  case '9':  case 'A':  case 'B':
  1289. case 'C':  case 'D':  case 'E':  case 'F':
  1290. case 'G':  case 'H':  case 'I':  case 'J':
  1291. case 'K':  case 'L':  case 'M':  case 'N':
  1292. case 'O':  case 'P':  case 'Q':  case 'R':
  1293. case 'S':  case 'T':  case 'U':  case 'V':
  1294. case 'W':  case 'X':  case 'Y':  case 'Z':
  1295. case '[':  case '_':  case 'a':  case 'b':
  1296. case 'c':  case 'd':  case 'e':  case 'f':
  1297. case 'g':  case 'h':  case 'i':  case 'j':
  1298. case 'k':  case 'l':  case 'm':  case 'n':
  1299. case 'o':  case 'p':  case 'q':  case 'r':
  1300. case 's':  case 't':  case 'u':  case 'v':
  1301. case 'w':  case 'x':  case 'y':  case 'z':
  1302. {
  1303. break;
  1304. }
  1305. default:
  1306. {
  1307. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1308. }
  1309. }
  1310. }
  1311. mARG(false);
  1312. {
  1313. switch ( LA(1)) {
  1314. case 't':  case 'n':  case 'r':  case ' ':
  1315. {
  1316. _saveIndex=text.length();
  1317. mWS(false);
  1318. text.setLength(_saveIndex);
  1319. break;
  1320. }
  1321. case ']':
  1322. {
  1323. break;
  1324. }
  1325. default:
  1326. {
  1327. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1328. }
  1329. }
  1330. }
  1331. match(']');
  1332. }
  1333. else {
  1334. if ( _cnt41>=1 ) { break _loop41; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  1335. }
  1336. _cnt41++;
  1337. } while (true);
  1338. }
  1339. break;
  1340. }
  1341. case '.':
  1342. {
  1343. match('.');
  1344. mID_ELEMENT(false);
  1345. break;
  1346. }
  1347. case 't':  case 'n':  case 'r':  case ' ':
  1348. case ')':  case '*':  case '+':  case ',':
  1349. case '-':  case '/':  case '=':  case ']':
  1350. {
  1351. String t=generator.mapTreeId(id.getText(), transInfo);
  1352. text.setLength(_begin); text.append(t);
  1353. {
  1354. if (((_tokenSet_9.member(LA(1))) && (_tokenSet_10.member(LA(2))))&&(transInfo!=null && transInfo.refRuleRoot!=null)) {
  1355. {
  1356. switch ( LA(1)) {
  1357. case 't':  case 'n':  case 'r':  case ' ':
  1358. {
  1359. mWS(false);
  1360. break;
  1361. }
  1362. case '=':
  1363. {
  1364. break;
  1365. }
  1366. default:
  1367. {
  1368. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1369. }
  1370. }
  1371. }
  1372. mVAR_ASSIGN(false);
  1373. }
  1374. else if ((_tokenSet_11.member(LA(1))) && (true)) {
  1375. }
  1376. else {
  1377. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1378. }
  1379. }
  1380. break;
  1381. }
  1382. default:
  1383. {
  1384. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1385. }
  1386. }
  1387. }
  1388. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1389. _token = makeToken(_ttype);
  1390. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1391. }
  1392. _returnToken = _token;
  1393. }
  1394. /** The arguments of a #[...] constructor are text, token type,
  1395.  *  or a tree.
  1396.  */
  1397. protected final void mAST_CTOR_ELEMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1398. int _ttype; Token _token=null; int _begin=text.length();
  1399. _ttype = AST_CTOR_ELEMENT;
  1400. int _saveIndex;
  1401. if ((LA(1)=='"') && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1402. mSTRING(false);
  1403. }
  1404. else if ((_tokenSet_12.member(LA(1))) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1405. mTREE_ELEMENT(false);
  1406. }
  1407. else if (((LA(1) >= '0' && LA(1) <= '9'))) {
  1408. mINT(false);
  1409. }
  1410. else {
  1411. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1412. }
  1413. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1414. _token = makeToken(_ttype);
  1415. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1416. }
  1417. _returnToken = _token;
  1418. }
  1419. protected final void mINT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1420. int _ttype; Token _token=null; int _begin=text.length();
  1421. _ttype = INT;
  1422. int _saveIndex;
  1423. {
  1424. int _cnt98=0;
  1425. _loop98:
  1426. do {
  1427. if (((LA(1) >= '0' && LA(1) <= '9'))) {
  1428. mDIGIT(false);
  1429. }
  1430. else {
  1431. if ( _cnt98>=1 ) { break _loop98; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  1432. }
  1433. _cnt98++;
  1434. } while (true);
  1435. }
  1436. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1437. _token = makeToken(_ttype);
  1438. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1439. }
  1440. _returnToken = _token;
  1441. }
  1442. protected final void mARG(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1443. int _ttype; Token _token=null; int _begin=text.length();
  1444. _ttype = ARG;
  1445. int _saveIndex;
  1446. {
  1447. switch ( LA(1)) {
  1448. case ''':
  1449. {
  1450. mCHAR(false);
  1451. break;
  1452. }
  1453. case '0':  case '1':  case '2':  case '3':
  1454. case '4':  case '5':  case '6':  case '7':
  1455. case '8':  case '9':
  1456. {
  1457. mINT_OR_FLOAT(false);
  1458. break;
  1459. }
  1460. default:
  1461. if ((_tokenSet_12.member(LA(1))) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1462. mTREE_ELEMENT(false);
  1463. }
  1464. else if ((LA(1)=='"') && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1465. mSTRING(false);
  1466. }
  1467. else {
  1468. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1469. }
  1470. }
  1471. }
  1472. {
  1473. _loop68:
  1474. do {
  1475. if ((_tokenSet_13.member(LA(1))) && (_tokenSet_14.member(LA(2)))) {
  1476. {
  1477. switch ( LA(1)) {
  1478. case 't':  case 'n':  case 'r':  case ' ':
  1479. {
  1480. mWS(false);
  1481. break;
  1482. }
  1483. case '*':  case '+':  case '-':  case '/':
  1484. {
  1485. break;
  1486. }
  1487. default:
  1488. {
  1489. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1490. }
  1491. }
  1492. }
  1493. {
  1494. switch ( LA(1)) {
  1495. case '+':
  1496. {
  1497. match('+');
  1498. break;
  1499. }
  1500. case '-':
  1501. {
  1502. match('-');
  1503. break;
  1504. }
  1505. case '*':
  1506. {
  1507. match('*');
  1508. break;
  1509. }
  1510. case '/':
  1511. {
  1512. match('/');
  1513. break;
  1514. }
  1515. default:
  1516. {
  1517. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1518. }
  1519. }
  1520. }
  1521. {
  1522. switch ( LA(1)) {
  1523. case 't':  case 'n':  case 'r':  case ' ':
  1524. {
  1525. mWS(false);
  1526. break;
  1527. }
  1528. case '"':  case '#':  case ''':  case '(':
  1529. case '0':  case '1':  case '2':  case '3':
  1530. case '4':  case '5':  case '6':  case '7':
  1531. case '8':  case '9':  case 'A':  case 'B':
  1532. case 'C':  case 'D':  case 'E':  case 'F':
  1533. case 'G':  case 'H':  case 'I':  case 'J':
  1534. case 'K':  case 'L':  case 'M':  case 'N':
  1535. case 'O':  case 'P':  case 'Q':  case 'R':
  1536. case 'S':  case 'T':  case 'U':  case 'V':
  1537. case 'W':  case 'X':  case 'Y':  case 'Z':
  1538. case '[':  case '_':  case 'a':  case 'b':
  1539. case 'c':  case 'd':  case 'e':  case 'f':
  1540. case 'g':  case 'h':  case 'i':  case 'j':
  1541. case 'k':  case 'l':  case 'm':  case 'n':
  1542. case 'o':  case 'p':  case 'q':  case 'r':
  1543. case 's':  case 't':  case 'u':  case 'v':
  1544. case 'w':  case 'x':  case 'y':  case 'z':
  1545. {
  1546. break;
  1547. }
  1548. default:
  1549. {
  1550. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1551. }
  1552. }
  1553. }
  1554. mARG(false);
  1555. }
  1556. else {
  1557. break _loop68;
  1558. }
  1559. } while (true);
  1560. }
  1561. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1562. _token = makeToken(_ttype);
  1563. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1564. }
  1565. _returnToken = _token;
  1566. }
  1567. protected final void mTEXT_ARG_ELEMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1568. int _ttype; Token _token=null; int _begin=text.length();
  1569. _ttype = TEXT_ARG_ELEMENT;
  1570. int _saveIndex;
  1571. switch ( LA(1)) {
  1572. case 'A':  case 'B':  case 'C':  case 'D':
  1573. case 'E':  case 'F':  case 'G':  case 'H':
  1574. case 'I':  case 'J':  case 'K':  case 'L':
  1575. case 'M':  case 'N':  case 'O':  case 'P':
  1576. case 'Q':  case 'R':  case 'S':  case 'T':
  1577. case 'U':  case 'V':  case 'W':  case 'X':
  1578. case 'Y':  case 'Z':  case '_':  case 'a':
  1579. case 'b':  case 'c':  case 'd':  case 'e':
  1580. case 'f':  case 'g':  case 'h':  case 'i':
  1581. case 'j':  case 'k':  case 'l':  case 'm':
  1582. case 'n':  case 'o':  case 'p':  case 'q':
  1583. case 'r':  case 's':  case 't':  case 'u':
  1584. case 'v':  case 'w':  case 'x':  case 'y':
  1585. case 'z':
  1586. {
  1587. mTEXT_ARG_ID_ELEMENT(false);
  1588. break;
  1589. }
  1590. case '"':
  1591. {
  1592. mSTRING(false);
  1593. break;
  1594. }
  1595. case ''':
  1596. {
  1597. mCHAR(false);
  1598. break;
  1599. }
  1600. case '0':  case '1':  case '2':  case '3':
  1601. case '4':  case '5':  case '6':  case '7':
  1602. case '8':  case '9':
  1603. {
  1604. mINT_OR_FLOAT(false);
  1605. break;
  1606. }
  1607. case '$':
  1608. {
  1609. mTEXT_ITEM(false);
  1610. break;
  1611. }
  1612. case '+':
  1613. {
  1614. match('+');
  1615. break;
  1616. }
  1617. default:
  1618. {
  1619. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1620. }
  1621. }
  1622. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1623. _token = makeToken(_ttype);
  1624. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1625. }
  1626. _returnToken = _token;
  1627. }
  1628. protected final void mTEXT_ARG_ID_ELEMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1629. int _ttype; Token _token=null; int _begin=text.length();
  1630. _ttype = TEXT_ARG_ID_ELEMENT;
  1631. int _saveIndex;
  1632. Token id=null;
  1633. mID(true);
  1634. id=_returnToken;
  1635. {
  1636. if ((_tokenSet_3.member(LA(1))) && (_tokenSet_15.member(LA(2)))) {
  1637. _saveIndex=text.length();
  1638. mWS(false);
  1639. text.setLength(_saveIndex);
  1640. }
  1641. else if ((_tokenSet_15.member(LA(1))) && (true)) {
  1642. }
  1643. else {
  1644. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1645. }
  1646. }
  1647. {
  1648. switch ( LA(1)) {
  1649. case '(':
  1650. {
  1651. match('(');
  1652. {
  1653. if ((_tokenSet_3.member(LA(1))) && (_tokenSet_16.member(LA(2)))) {
  1654. _saveIndex=text.length();
  1655. mWS(false);
  1656. text.setLength(_saveIndex);
  1657. }
  1658. else if ((_tokenSet_16.member(LA(1))) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1659. }
  1660. else {
  1661. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1662. }
  1663. }
  1664. {
  1665. _loop56:
  1666. do {
  1667. if ((_tokenSet_5.member(LA(1)))) {
  1668. mTEXT_ARG(false);
  1669. {
  1670. _loop55:
  1671. do {
  1672. if ((LA(1)==',')) {
  1673. match(',');
  1674. mTEXT_ARG(false);
  1675. }
  1676. else {
  1677. break _loop55;
  1678. }
  1679. } while (true);
  1680. }
  1681. }
  1682. else {
  1683. break _loop56;
  1684. }
  1685. } while (true);
  1686. }
  1687. {
  1688. switch ( LA(1)) {
  1689. case 't':  case 'n':  case 'r':  case ' ':
  1690. {
  1691. _saveIndex=text.length();
  1692. mWS(false);
  1693. text.setLength(_saveIndex);
  1694. break;
  1695. }
  1696. case ')':
  1697. {
  1698. break;
  1699. }
  1700. default:
  1701. {
  1702. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1703. }
  1704. }
  1705. }
  1706. match(')');
  1707. break;
  1708. }
  1709. case '[':
  1710. {
  1711. {
  1712. int _cnt61=0;
  1713. _loop61:
  1714. do {
  1715. if ((LA(1)=='[')) {
  1716. match('[');
  1717. {
  1718. switch ( LA(1)) {
  1719. case 't':  case 'n':  case 'r':  case ' ':
  1720. {
  1721. _saveIndex=text.length();
  1722. mWS(false);
  1723. text.setLength(_saveIndex);
  1724. break;
  1725. }
  1726. case '"':  case '$':  case ''':  case '+':
  1727. case '0':  case '1':  case '2':  case '3':
  1728. case '4':  case '5':  case '6':  case '7':
  1729. case '8':  case '9':  case 'A':  case 'B':
  1730. case 'C':  case 'D':  case 'E':  case 'F':
  1731. case 'G':  case 'H':  case 'I':  case 'J':
  1732. case 'K':  case 'L':  case 'M':  case 'N':
  1733. case 'O':  case 'P':  case 'Q':  case 'R':
  1734. case 'S':  case 'T':  case 'U':  case 'V':
  1735. case 'W':  case 'X':  case 'Y':  case 'Z':
  1736. case '_':  case 'a':  case 'b':  case 'c':
  1737. case 'd':  case 'e':  case 'f':  case 'g':
  1738. case 'h':  case 'i':  case 'j':  case 'k':
  1739. case 'l':  case 'm':  case 'n':  case 'o':
  1740. case 'p':  case 'q':  case 'r':  case 's':
  1741. case 't':  case 'u':  case 'v':  case 'w':
  1742. case 'x':  case 'y':  case 'z':
  1743. {
  1744. break;
  1745. }
  1746. default:
  1747. {
  1748. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1749. }
  1750. }
  1751. }
  1752. mTEXT_ARG(false);
  1753. {
  1754. switch ( LA(1)) {
  1755. case 't':  case 'n':  case 'r':  case ' ':
  1756. {
  1757. _saveIndex=text.length();
  1758. mWS(false);
  1759. text.setLength(_saveIndex);
  1760. break;
  1761. }
  1762. case ']':
  1763. {
  1764. break;
  1765. }
  1766. default:
  1767. {
  1768. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1769. }
  1770. }
  1771. }
  1772. match(']');
  1773. }
  1774. else {
  1775. if ( _cnt61>=1 ) { break _loop61; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  1776. }
  1777. _cnt61++;
  1778. } while (true);
  1779. }
  1780. break;
  1781. }
  1782. case '.':
  1783. {
  1784. match('.');
  1785. mTEXT_ARG_ID_ELEMENT(false);
  1786. break;
  1787. }
  1788. case '-':
  1789. {
  1790. match("->");
  1791. mTEXT_ARG_ID_ELEMENT(false);
  1792. break;
  1793. }
  1794. case ':':
  1795. {
  1796. match("::");
  1797. mTEXT_ARG_ID_ELEMENT(false);
  1798. break;
  1799. }
  1800. case 't':  case 'n':  case 'r':  case ' ':
  1801. case '"':  case '$':  case ''':  case ')':
  1802. case '+':  case ',':  case '0':  case '1':
  1803. case '2':  case '3':  case '4':  case '5':
  1804. case '6':  case '7':  case '8':  case '9':
  1805. case 'A':  case 'B':  case 'C':  case 'D':
  1806. case 'E':  case 'F':  case 'G':  case 'H':
  1807. case 'I':  case 'J':  case 'K':  case 'L':
  1808. case 'M':  case 'N':  case 'O':  case 'P':
  1809. case 'Q':  case 'R':  case 'S':  case 'T':
  1810. case 'U':  case 'V':  case 'W':  case 'X':
  1811. case 'Y':  case 'Z':  case ']':  case '_':
  1812. case 'a':  case 'b':  case 'c':  case 'd':
  1813. case 'e':  case 'f':  case 'g':  case 'h':
  1814. case 'i':  case 'j':  case 'k':  case 'l':
  1815. case 'm':  case 'n':  case 'o':  case 'p':
  1816. case 'q':  case 'r':  case 's':  case 't':
  1817. case 'u':  case 'v':  case 'w':  case 'x':
  1818. case 'y':  case 'z':
  1819. {
  1820. break;
  1821. }
  1822. default:
  1823. {
  1824. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1825. }
  1826. }
  1827. }
  1828. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1829. _token = makeToken(_ttype);
  1830. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1831. }
  1832. _returnToken = _token;
  1833. }
  1834. protected final void mINT_OR_FLOAT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1835. int _ttype; Token _token=null; int _begin=text.length();
  1836. _ttype = INT_OR_FLOAT;
  1837. int _saveIndex;
  1838. {
  1839. int _cnt101=0;
  1840. _loop101:
  1841. do {
  1842. if (((LA(1) >= '0' && LA(1) <= '9')) && (_tokenSet_17.member(LA(2)))) {
  1843. mDIGIT(false);
  1844. }
  1845. else {
  1846. if ( _cnt101>=1 ) { break _loop101; } else {throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());}
  1847. }
  1848. _cnt101++;
  1849. } while (true);
  1850. }
  1851. {
  1852. if ((LA(1)=='L') && (_tokenSet_18.member(LA(2)))) {
  1853. match('L');
  1854. }
  1855. else if ((LA(1)=='l') && (_tokenSet_18.member(LA(2)))) {
  1856. match('l');
  1857. }
  1858. else if ((LA(1)=='.')) {
  1859. match('.');
  1860. {
  1861. _loop104:
  1862. do {
  1863. if (((LA(1) >= '0' && LA(1) <= '9')) && (_tokenSet_18.member(LA(2)))) {
  1864. mDIGIT(false);
  1865. }
  1866. else {
  1867. break _loop104;
  1868. }
  1869. } while (true);
  1870. }
  1871. }
  1872. else if ((_tokenSet_18.member(LA(1))) && (true)) {
  1873. }
  1874. else {
  1875. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1876. }
  1877. }
  1878. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1879. _token = makeToken(_ttype);
  1880. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1881. }
  1882. _returnToken = _token;
  1883. }
  1884. protected final void mSL_COMMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1885. int _ttype; Token _token=null; int _begin=text.length();
  1886. _ttype = SL_COMMENT;
  1887. int _saveIndex;
  1888. match("//");
  1889. {
  1890. _loop78:
  1891. do {
  1892. // nongreedy exit test
  1893. if ((LA(1)=='n'||LA(1)=='r') && (true)) break _loop78;
  1894. if (((LA(1) >= '3' && LA(1) <= '~')) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1895. matchNot(EOF_CHAR);
  1896. }
  1897. else {
  1898. break _loop78;
  1899. }
  1900. } while (true);
  1901. }
  1902. {
  1903. if ((LA(1)=='r') && (LA(2)=='n')) {
  1904. match("rn");
  1905. }
  1906. else if ((LA(1)=='n')) {
  1907. match('n');
  1908. }
  1909. else if ((LA(1)=='r') && (true)) {
  1910. match('r');
  1911. }
  1912. else {
  1913. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  1914. }
  1915. }
  1916. newline();
  1917. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1918. _token = makeToken(_ttype);
  1919. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1920. }
  1921. _returnToken = _token;
  1922. }
  1923. protected final void mML_COMMENT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1924. int _ttype; Token _token=null; int _begin=text.length();
  1925. _ttype = ML_COMMENT;
  1926. int _saveIndex;
  1927. match("/*");
  1928. {
  1929. _loop82:
  1930. do {
  1931. // nongreedy exit test
  1932. if ((LA(1)=='*') && (LA(2)=='/')) break _loop82;
  1933. if ((LA(1)=='r') && (LA(2)=='n')) {
  1934. match('r');
  1935. match('n');
  1936. newline();
  1937. }
  1938. else if ((LA(1)=='r') && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1939. match('r');
  1940. newline();
  1941. }
  1942. else if ((LA(1)=='n') && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1943. match('n');
  1944. newline();
  1945. }
  1946. else if (((LA(1) >= '3' && LA(1) <= '~')) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  1947. matchNot(EOF_CHAR);
  1948. }
  1949. else {
  1950. break _loop82;
  1951. }
  1952. } while (true);
  1953. }
  1954. match("*/");
  1955. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  1956. _token = makeToken(_ttype);
  1957. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  1958. }
  1959. _returnToken = _token;
  1960. }
  1961. protected final void mESC(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  1962. int _ttype; Token _token=null; int _begin=text.length();
  1963. _ttype = ESC;
  1964. int _saveIndex;
  1965. match('\');
  1966. {
  1967. switch ( LA(1)) {
  1968. case 'n':
  1969. {
  1970. match('n');
  1971. break;
  1972. }
  1973. case 'r':
  1974. {
  1975. match('r');
  1976. break;
  1977. }
  1978. case 't':
  1979. {
  1980. match('t');
  1981. break;
  1982. }
  1983. case 'b':
  1984. {
  1985. match('b');
  1986. break;
  1987. }
  1988. case 'f':
  1989. {
  1990. match('f');
  1991. break;
  1992. }
  1993. case '"':
  1994. {
  1995. match('"');
  1996. break;
  1997. }
  1998. case ''':
  1999. {
  2000. match(''');
  2001. break;
  2002. }
  2003. case '\':
  2004. {
  2005. match('\');
  2006. break;
  2007. }
  2008. case '0':  case '1':  case '2':  case '3':
  2009. {
  2010. {
  2011. matchRange('0','3');
  2012. }
  2013. {
  2014. if (((LA(1) >= '0' && LA(1) <= '9')) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  2015. mDIGIT(false);
  2016. {
  2017. if (((LA(1) >= '0' && LA(1) <= '9')) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  2018. mDIGIT(false);
  2019. }
  2020. else if (((LA(1) >= '3' && LA(1) <= '~')) && (true)) {
  2021. }
  2022. else {
  2023. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  2024. }
  2025. }
  2026. }
  2027. else if (((LA(1) >= '3' && LA(1) <= '~')) && (true)) {
  2028. }
  2029. else {
  2030. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  2031. }
  2032. }
  2033. break;
  2034. }
  2035. case '4':  case '5':  case '6':  case '7':
  2036. {
  2037. {
  2038. matchRange('4','7');
  2039. }
  2040. {
  2041. if (((LA(1) >= '0' && LA(1) <= '9')) && ((LA(2) >= '3' && LA(2) <= '~'))) {
  2042. mDIGIT(false);
  2043. }
  2044. else if (((LA(1) >= '3' && LA(1) <= '~')) && (true)) {
  2045. }
  2046. else {
  2047. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  2048. }
  2049. }
  2050. break;
  2051. }
  2052. default:
  2053. {
  2054. throw new NoViableAltForCharException((char)LA(1), getFilename(), getLine());
  2055. }
  2056. }
  2057. }
  2058. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  2059. _token = makeToken(_ttype);
  2060. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  2061. }
  2062. _returnToken = _token;
  2063. }
  2064. protected final void mDIGIT(boolean _createToken) throws RecognitionException, CharStreamException, TokenStreamException {
  2065. int _ttype; Token _token=null; int _begin=text.length();
  2066. _ttype = DIGIT;
  2067. int _saveIndex;
  2068. matchRange('0','9');
  2069. if ( _createToken && _token==null && _ttype!=Token.SKIP ) {
  2070. _token = makeToken(_ttype);
  2071. _token.setText(new String(text.getBuffer(), _begin, text.length()-_begin));
  2072. }
  2073. _returnToken = _token;
  2074. }
  2075. private static final long _tokenSet_0_data_[] = { -141407503262728L, 9223372036854775807L, 0L, 0L };
  2076. public static final BitSet _tokenSet_0 = new BitSet(_tokenSet_0_data_);
  2077. private static final long _tokenSet_1_data_[] = { -145135534866440L, 9223372036854775807L, 0L, 0L };
  2078. public static final BitSet _tokenSet_1 = new BitSet(_tokenSet_1_data_);
  2079. private static final long _tokenSet_2_data_[] = { 0L, 576460745995190270L, 0L, 0L };
  2080. public static final BitSet _tokenSet_2 = new BitSet(_tokenSet_2_data_);
  2081. private static final long _tokenSet_3_data_[] = { 4294977024L, 0L, 0L };
  2082. public static final BitSet _tokenSet_3 = new BitSet(_tokenSet_3_data_);
  2083. private static final long _tokenSet_4_data_[] = { 287948901175001088L, 576460745995190270L, 0L, 0L };
  2084. public static final BitSet _tokenSet_4 = new BitSet(_tokenSet_4_data_);
  2085. private static final long _tokenSet_5_data_[] = { 287958332923183104L, 576460745995190270L, 0L, 0L };
  2086. public static final BitSet _tokenSet_5 = new BitSet(_tokenSet_5_data_);
  2087. private static final long _tokenSet_6_data_[] = { 287978128427460096L, 576460746532061182L, 0L, 0L };
  2088. public static final BitSet _tokenSet_6 = new BitSet(_tokenSet_6_data_);
  2089. private static final long _tokenSet_7_data_[] = { 2306123388973753856L, 671088640L, 0L, 0L };
  2090. public static final BitSet _tokenSet_7 = new BitSet(_tokenSet_7_data_);
  2091. private static final long _tokenSet_8_data_[] = { 287952805300282880L, 576460746129407998L, 0L, 0L };
  2092. public static final BitSet _tokenSet_8 = new BitSet(_tokenSet_8_data_);
  2093. private static final long _tokenSet_9_data_[] = { 2305843013508670976L, 0L, 0L };
  2094. public static final BitSet _tokenSet_9 = new BitSet(_tokenSet_9_data_);
  2095. private static final long _tokenSet_10_data_[] = { 2306051920717948416L, 536870912L, 0L, 0L };
  2096. public static final BitSet _tokenSet_10 = new BitSet(_tokenSet_10_data_);
  2097. private static final long _tokenSet_11_data_[] = { 208911504254464L, 536870912L, 0L, 0L };
  2098. public static final BitSet _tokenSet_11 = new BitSet(_tokenSet_11_data_);
  2099. private static final long _tokenSet_12_data_[] = { 1151051235328L, 576460746129407998L, 0L, 0L };
  2100. public static final BitSet _tokenSet_12 = new BitSet(_tokenSet_12_data_);
  2101. private static final long _tokenSet_13_data_[] = { 189120294954496L, 0L, 0L };
  2102. public static final BitSet _tokenSet_13 = new BitSet(_tokenSet_13_data_);
  2103. private static final long _tokenSet_14_data_[] = { 288139722277004800L, 576460746129407998L, 0L, 0L };
  2104. public static final BitSet _tokenSet_14 = new BitSet(_tokenSet_14_data_);
  2105. private static final long _tokenSet_15_data_[] = { 576315157207066112L, 576460746666278910L, 0L, 0L };
  2106. public static final BitSet _tokenSet_15 = new BitSet(_tokenSet_15_data_);
  2107. private static final long _tokenSet_16_data_[] = { 287960536241415680L, 576460745995190270L, 0L, 0L };
  2108. public static final BitSet _tokenSet_16 = new BitSet(_tokenSet_16_data_);
  2109. private static final long _tokenSet_17_data_[] = { 288228817078593024L, 576460746532061182L, 0L, 0L };
  2110. public static final BitSet _tokenSet_17 = new BitSet(_tokenSet_17_data_);
  2111. private static final long _tokenSet_18_data_[] = { 288158448334415360L, 576460746532061182L, 0L, 0L };
  2112. public static final BitSet _tokenSet_18 = new BitSet(_tokenSet_18_data_);
  2113. }