(kind)
| 2721 | // see http://wiki.ecmascript.org/doku.php?id=harmony:const |
| 2722 | // and http://wiki.ecmascript.org/doku.php?id=harmony:let |
| 2723 | function parseConstLetDeclaration(kind) { |
| 2724 | var declarations, startToken; |
| 2725 | |
| 2726 | startToken = lookahead; |
| 2727 | |
| 2728 | expectKeyword(kind); |
| 2729 | |
| 2730 | declarations = parseVariableDeclarationList(kind); |
| 2731 | |
| 2732 | consumeSemicolon(); |
| 2733 | |
| 2734 | return delegate.markEnd(delegate.createVariableDeclaration(declarations, kind), startToken); |
| 2735 | } |
| 2736 | |
| 2737 | // 12.3 Empty Statement |
| 2738 |
no test coverage detected