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

Function parseArguments

docs/tests/v2/es6/js/sanddance.js:129082–129100  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

129080
129081
129082function parseArguments() {
129083 var args = [];
129084 expect('(');
129085
129086 if (!match(')')) {
129087 while (index < length) {
129088 args.push(parseConditionalExpression());
129089
129090 if (match(')')) {
129091 break;
129092 }
129093
129094 expect(',');
129095 }
129096 }
129097
129098 expect(')');
129099 return args;
129100}
129101
129102function parseNonComputedProperty() {
129103 var token;

Callers 1

Calls 3

expectFunction · 0.70
matchFunction · 0.70

Tested by

no test coverage detected