MCPcopy Index your code
hub / github.com/reactjs/react-rails / parseNewExpression

Function parseNewExpression

lib/assets/javascripts/JSXTransformer.js:5949–5957  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5947 }
5948
5949 function parseNewExpression() {
5950 var callee, args, marker = markerCreate();
5951
5952 expectKeyword('new');
5953 callee = parseLeftHandSideExpression();
5954 args = match('(') ? parseArguments() : [];
5955
5956 return markerApply(marker, delegate.createNewExpression(callee, args));
5957 }
5958
5959 function parseLeftHandSideExpressionAllowCall() {
5960 var expr, args, marker = markerCreate();

Calls 6

markerCreateFunction · 0.85
expectKeywordFunction · 0.85
matchFunction · 0.85
parseArgumentsFunction · 0.85
markerApplyFunction · 0.85

Tested by

no test coverage detected