()
| 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; |
no test coverage detected