MCPcopy Create free account
hub / github.com/dchester/jsonpath / parseArguments

Function parseArguments

jsonpath.js:2229–2247  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2227 // 11.2 Left-Hand-Side Expressions
2228
2229 function parseArguments() {
2230 var args = [];
2231
2232 expect('(');
2233
2234 if (!match(')')) {
2235 while (index < length) {
2236 args.push(parseAssignmentExpression());
2237 if (match(')')) {
2238 break;
2239 }
2240 expect(',');
2241 }
2242 }
2243
2244 expect(')');
2245
2246 return args;
2247 }
2248
2249 function parseNonComputedProperty() {
2250 var token, startToken;

Callers 2

parseNewExpressionFunction · 0.85

Calls 3

expectFunction · 0.85
matchFunction · 0.85

Tested by

no test coverage detected