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

Method formalParameters

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

Source from the content-addressed store, hash-verified

1065 }
1066
1067 public List<Parameter> formalParameters() {
1068 consume(LEFT_PAREN);
1069 List<Parameter> params = formalParameterList();
1070 consume(RIGHT_PAREN);
1071 return params;
1072 }
1073
1074 public List<Parameter> formalParameterList() {
1075 List<Parameter> params = new ArrayList<>();

Callers 3

functionExpressionMethod · 0.95
functionDeclarationMethod · 0.95
functionDescriptorMethod · 0.95

Calls 2

consumeMethod · 0.95
formalParameterListMethod · 0.95

Tested by

no test coverage detected