(kind)
| 2691 | } |
| 2692 | |
| 2693 | function parseVariableDeclarationList(kind) { |
| 2694 | var list = []; |
| 2695 | |
| 2696 | do { |
| 2697 | list.push(parseVariableDeclaration(kind)); |
| 2698 | if (!match(',')) { |
| 2699 | break; |
| 2700 | } |
| 2701 | lex(); |
| 2702 | } while (index < length); |
| 2703 | |
| 2704 | return list; |
| 2705 | } |
| 2706 | |
| 2707 | function parseVariableStatement() { |
| 2708 | var declarations; |
no test coverage detected