MCPcopy Index your code
hub / github.com/beanshell/beanshell / NameList

Method NameList

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

Source from the content-addressed store, hash-verified

1091 }
1092
1093 final public int NameList() throws ParseException {
1094 int count = 0;
1095 AmbiguousName();
1096 ++count;
1097 label_6:
1098 while (true) {
1099 switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
1100 case COMMA:
1101 ;
1102 break;
1103 default:
1104 jj_la1[25] = jj_gen;
1105 break label_6;
1106 }
1107 jj_consume_token(COMMA);
1108 AmbiguousName();
1109 ++count;
1110 }
1111 {if (true) return count;}
1112 throw new Error("Missing return statement in function");
1113 }
1114
1115/*
1116 * Expression syntax follows.

Callers 2

ClassDeclarationMethod · 0.95
MethodDeclarationMethod · 0.95

Calls 3

AmbiguousNameMethod · 0.95
jj_ntkMethod · 0.95
jj_consume_tokenMethod · 0.95

Tested by

no test coverage detected