MCPcopy Index your code
hub / github.com/BloombergGraphics/whatiscode / parseArguments

Function parseArguments

scripts/libs/esprima.js:2688–2706  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2686 // 11.2 Left-Hand-Side Expressions
2687
2688 function parseArguments() {
2689 var args = [];
2690
2691 expect('(');
2692
2693 if (!match(')')) {
2694 while (startIndex < length) {
2695 args.push(parseAssignmentExpression());
2696 if (match(')')) {
2697 break;
2698 }
2699 expectCommaSeparator();
2700 }
2701 }
2702
2703 expect(')');
2704
2705 return args;
2706 }
2707
2708 function parseNonComputedProperty() {
2709 var token, node = new Node();

Callers 2

parseNewExpressionFunction · 0.85

Calls 4

expectFunction · 0.85
matchFunction · 0.85
expectCommaSeparatorFunction · 0.85

Tested by

no test coverage detected