()
| 7503 | } |
| 7504 | |
| 7505 | function parseForVariableDeclaration() { |
| 7506 | var marker = markerCreate(), |
| 7507 | token = lex(), |
| 7508 | declarations = parseVariableDeclarationList(); |
| 7509 | |
| 7510 | return markerApply(marker, delegate.createVariableDeclaration(declarations, token.value)); |
| 7511 | } |
| 7512 | |
| 7513 | function parseForStatement(opts) { |
| 7514 | var init, test, update, left, right, body, operator, oldInIteration, |
no test coverage detected