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

Function parseBindingList

scripts/libs/esprima.js:3303–3315  ·  view source on GitHub ↗
(kind, options)

Source from the content-addressed store, hash-verified

3301 }
3302
3303 function parseBindingList(kind, options) {
3304 var list = [];
3305
3306 do {
3307 list.push(parseLexicalBinding(kind, options));
3308 if (!match(',')) {
3309 break;
3310 }
3311 lex();
3312 } while (startIndex < length);
3313
3314 return list;
3315 }
3316
3317 function parseLexicalDeclaration(options) {
3318 var kind, declarations, node = new Node();

Callers 2

parseLexicalDeclarationFunction · 0.85
parseForStatementFunction · 0.85

Calls 3

parseLexicalBindingFunction · 0.85
matchFunction · 0.85
lexFunction · 0.85

Tested by

no test coverage detected