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

Function parseVariableStatement

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

Source from the content-addressed store, hash-verified

7129 }
7130
7131 function parseVariableStatement() {
7132 var declarations, marker = markerCreate();
7133
7134 expectKeyword('var');
7135
7136 declarations = parseVariableDeclarationList();
7137
7138 consumeSemicolon();
7139
7140 return markerApply(marker, delegate.createVariableDeclaration(declarations, 'var'));
7141 }
7142
7143 // kind may be `const` or `let`
7144 // Both are experimental and not in the specification yet.

Callers 1

parseStatementFunction · 0.85

Calls 5

markerCreateFunction · 0.85
expectKeywordFunction · 0.85
consumeSemicolonFunction · 0.85
markerApplyFunction · 0.85

Tested by

no test coverage detected