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

Function parseStatementList

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

Source from the content-addressed store, hash-verified

3190 }
3191
3192 function parseStatementList() {
3193 var list = [];
3194 while (startIndex < length) {
3195 if (match('}')) {
3196 break;
3197 }
3198 list.push(parseStatementListItem());
3199 }
3200
3201 return list;
3202 }
3203
3204 function parseBlock() {
3205 var block, node = new Node();

Callers 1

parseBlockFunction · 0.85

Calls 2

matchFunction · 0.85
parseStatementListItemFunction · 0.85

Tested by

no test coverage detected