()
| 2460 | * Boolean For 'true' 'false' |
| 2461 | */ |
| 2462 | final public void Boolean() throws ParseException { |
| 2463 | switch ((jj_ntk == -1) ? jj_ntk_f() : jj_ntk) { |
| 2464 | case TRUE: { |
| 2465 | AstTrue jjtn001 = new AstTrue(JJTTRUE); |
| 2466 | boolean jjtc001 = true; |
| 2467 | jjtree.openNodeScope(jjtn001); |
| 2468 | try { |
| 2469 | jj_consume_token(TRUE); |
| 2470 | } finally { |
| 2471 | if (jjtc001) { |
| 2472 | jjtree.closeNodeScope(jjtn001, true); |
| 2473 | } |
| 2474 | } |
| 2475 | break; |
| 2476 | } |
| 2477 | case FALSE: { |
| 2478 | AstFalse jjtn002 = new AstFalse(JJTFALSE); |
| 2479 | boolean jjtc002 = true; |
| 2480 | jjtree.openNodeScope(jjtn002); |
| 2481 | try { |
| 2482 | jj_consume_token(FALSE); |
| 2483 | } finally { |
| 2484 | if (jjtc002) { |
| 2485 | jjtree.closeNodeScope(jjtn002, true); |
| 2486 | } |
| 2487 | } |
| 2488 | break; |
| 2489 | } |
| 2490 | default: |
| 2491 | jj_la1[55] = jj_gen; |
| 2492 | jj_consume_token(-1); |
| 2493 | throw new ParseException(); |
| 2494 | } |
| 2495 | } |
| 2496 | |
| 2497 | /* |
| 2498 | * FloatingPoint For Decimal and Floating Point Literals |
no test coverage detected