MCPcopy Create free account
hub / github.com/dynjs/dynjs / argumentList

Method argumentList

src/main/java/org/dynjs/parser/js/Parser.java:1114–1127  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1112 }
1113
1114 public List<Expression> argumentList() {
1115 List<Expression> arguments = new ArrayList<>();
1116 while (la() != RIGHT_PAREN) {
1117 arguments.add(assignmentExpression());
1118
1119 if (la() == COMMA) {
1120 consume();
1121 } else {
1122 break;
1123 }
1124 }
1125
1126 return arguments;
1127 }
1128
1129 // ----------------------------------------------------------------------
1130 // Statements

Callers 1

argumentsMethod · 0.95

Calls 4

laMethod · 0.95
assignmentExpressionMethod · 0.95
consumeMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected