MCPcopy Create free account
hub / github.com/microsoft/SandDance / parseArguments

Function parseArguments

docs/app/js/sanddance-app.js:144200–144210  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

144198 return expr;
144199} // 11.2 Left-Hand-Side Expressions
144200function parseArguments() {
144201 const args = [];
144202 expect("(");
144203 if (!match(")")) while(index < length){
144204 args.push(parseConditionalExpression());
144205 if (match(")")) break;
144206 expect(",");
144207 }
144208 expect(")");
144209 return args;
144210}
144211function parseNonComputedProperty() {
144212 index = lookahead.start;
144213 const token = lex();

Callers 1

Calls 3

expectFunction · 0.70
matchFunction · 0.70

Tested by

no test coverage detected