()
| 2518 | * Integer For Simple Numeric Literals |
| 2519 | */ |
| 2520 | final public void Integer() throws ParseException {/* @bgen(jjtree) Integer */ |
| 2521 | AstInteger jjtn000 = new AstInteger(JJTINTEGER); |
| 2522 | boolean jjtc000 = true; |
| 2523 | jjtree.openNodeScope(jjtn000); |
| 2524 | Token t = null; |
| 2525 | try { |
| 2526 | t = jj_consume_token(INTEGER_LITERAL); |
| 2527 | jjtree.closeNodeScope(jjtn000, true); |
| 2528 | jjtc000 = false; |
| 2529 | jjtn000.setImage(t.image); |
| 2530 | } finally { |
| 2531 | if (jjtc000) { |
| 2532 | jjtree.closeNodeScope(jjtn000, true); |
| 2533 | } |
| 2534 | } |
| 2535 | } |
| 2536 | |
| 2537 | /* |
| 2538 | * String For Quoted Literals |
no test coverage detected