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

Function parseNewExpression

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

Source from the content-addressed store, hash-verified

2736 }
2737
2738 function parseNewExpression() {
2739 var callee, args, node = new Node();
2740
2741 expectKeyword('new');
2742 callee = parseLeftHandSideExpression();
2743 args = match('(') ? parseArguments() : [];
2744
2745 return node.finishNewExpression(callee, args);
2746 }
2747
2748 function parseLeftHandSideExpressionAllowCall() {
2749 var expr, args, property, startToken, previousAllowIn = state.allowIn;

Calls 4

expectKeywordFunction · 0.85
matchFunction · 0.85
parseArgumentsFunction · 0.85

Tested by

no test coverage detected