MCPcopy Create free account
hub / github.com/beanshell/beanshell / ArgumentList

Method ArgumentList

src/bsh/Parser.java:2575–2590  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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);

Callers 1

ArgumentsMethod · 0.95

Calls 3

ExpressionMethod · 0.95
jj_ntkMethod · 0.95
jj_consume_tokenMethod · 0.95

Tested by

no test coverage detected