()
| 2573 | |
| 2574 | // leave these on the stack for Arguments() to handle |
| 2575 | final public void ArgumentList() throws ParseException { |
| 2576 | Expression(); |
| 2577 | label_18: |
| 2578 | while (true) { |
| 2579 | switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { |
| 2580 | case COMMA: |
| 2581 | ; |
| 2582 | break; |
| 2583 | default: |
| 2584 | jj_la1[67] = jj_gen; |
| 2585 | break label_18; |
| 2586 | } |
| 2587 | jj_consume_token(COMMA); |
| 2588 | Expression(); |
| 2589 | } |
| 2590 | } |
| 2591 | |
| 2592 | final public void TypeArguments() throws ParseException { |
| 2593 | jj_consume_token(LT); |
no test coverage detected