()
| 3252 | } |
| 3253 | |
| 3254 | function parseVariableDeclarationList() { |
| 3255 | var list = []; |
| 3256 | |
| 3257 | do { |
| 3258 | list.push(parseVariableDeclaration()); |
| 3259 | if (!match(',')) { |
| 3260 | break; |
| 3261 | } |
| 3262 | lex(); |
| 3263 | } while (startIndex < length); |
| 3264 | |
| 3265 | return list; |
| 3266 | } |
| 3267 | |
| 3268 | function parseVariableStatement(node) { |
| 3269 | var declarations; |
no test coverage detected