()
| 7129 | } |
| 7130 | |
| 7131 | function parseVariableStatement() { |
| 7132 | var declarations, marker = markerCreate(); |
| 7133 | |
| 7134 | expectKeyword('var'); |
| 7135 | |
| 7136 | declarations = parseVariableDeclarationList(); |
| 7137 | |
| 7138 | consumeSemicolon(); |
| 7139 | |
| 7140 | return markerApply(marker, delegate.createVariableDeclaration(declarations, 'var')); |
| 7141 | } |
| 7142 | |
| 7143 | // kind may be `const` or `let` |
| 7144 | // Both are experimental and not in the specification yet. |
no test coverage detected