()
| 338 | } |
| 339 | |
| 340 | final public Boolean booleanValue() throws ParseException { |
| 341 | Boolean b; |
| 342 | switch (jj_nt.kind) { |
| 343 | case TRUE: { |
| 344 | jj_consume_token(TRUE); |
| 345 | b = Boolean.TRUE; |
| 346 | break; |
| 347 | } |
| 348 | case FALSE: { |
| 349 | jj_consume_token(FALSE); |
| 350 | b = Boolean.FALSE; |
| 351 | break; |
| 352 | } |
| 353 | default: |
| 354 | jj_la1[8] = jj_gen; |
| 355 | jj_consume_token(-1); |
| 356 | throw new ParseException(); |
| 357 | } |
| 358 | { |
| 359 | if ("" != null) { |
| 360 | return b; |
| 361 | } |
| 362 | } |
| 363 | throw new Error("Missing return statement in function"); |
| 364 | } |
| 365 | |
| 366 | final public Number number() throws ParseException { |
| 367 | Token t; |
no test coverage detected