(node)
| 3266 | } |
| 3267 | |
| 3268 | function parseVariableStatement(node) { |
| 3269 | var declarations; |
| 3270 | |
| 3271 | expectKeyword('var'); |
| 3272 | |
| 3273 | declarations = parseVariableDeclarationList(); |
| 3274 | |
| 3275 | consumeSemicolon(); |
| 3276 | |
| 3277 | return node.finishVariableDeclaration(declarations); |
| 3278 | } |
| 3279 | |
| 3280 | function parseLexicalBinding(kind, options) { |
| 3281 | var init = null, id, node = new Node(); |
no test coverage detected