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

Method arguments

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

Source from the content-addressed store, hash-verified

1105 }
1106
1107 public List<Expression> arguments() {
1108 consume(LEFT_PAREN);
1109 List<Expression> args = argumentList();
1110 consume(RIGHT_PAREN);
1111 return args;
1112 }
1113
1114 public List<Expression> argumentList() {
1115 List<Expression> arguments = new ArrayList<>();

Callers 2

callExpressionMethod · 0.95
newExpressionMethod · 0.95

Calls 2

consumeMethod · 0.95
argumentListMethod · 0.95

Tested by

no test coverage detected