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

Function parseBlock

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

Source from the content-addressed store, hash-verified

3202 }
3203
3204 function parseBlock() {
3205 var block, node = new Node();
3206
3207 expect('{');
3208
3209 block = parseStatementList();
3210
3211 expect('}');
3212
3213 return node.finishBlockStatement(block);
3214 }
3215
3216 // 12.2 Variable Statement
3217

Callers 3

parseCatchClauseFunction · 0.85
parseTryStatementFunction · 0.85
parseStatementFunction · 0.85

Calls 2

expectFunction · 0.85
parseStatementListFunction · 0.85

Tested by

no test coverage detected