MCPcopy Create free account
hub / github.com/dchester/jsonpath / parseForVariableDeclaration

Function parseForVariableDeclaration

jsonpath.js:2827–2835  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2825 }
2826
2827 function parseForVariableDeclaration() {
2828 var token, declarations, startToken;
2829
2830 startToken = lookahead;
2831 token = lex();
2832 declarations = parseVariableDeclarationList();
2833
2834 return delegate.markEnd(delegate.createVariableDeclaration(declarations, token.value), startToken);
2835 }
2836
2837 function parseForStatement() {
2838 var init, test, update, left, right, body, oldInIteration, previousAllowIn = state.allowIn;

Callers 1

parseForStatementFunction · 0.85

Calls 2

lexFunction · 0.70

Tested by

no test coverage detected