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

Function parseVariableDeclarationList

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

Source from the content-addressed store, hash-verified

3252 }
3253
3254 function parseVariableDeclarationList() {
3255 var list = [];
3256
3257 do {
3258 list.push(parseVariableDeclaration());
3259 if (!match(',')) {
3260 break;
3261 }
3262 lex();
3263 } while (startIndex < length);
3264
3265 return list;
3266 }
3267
3268 function parseVariableStatement(node) {
3269 var declarations;

Callers 2

parseVariableStatementFunction · 0.85
parseForStatementFunction · 0.85

Calls 3

parseVariableDeclarationFunction · 0.85
matchFunction · 0.85
lexFunction · 0.85

Tested by

no test coverage detected