(kind, options)
| 3301 | } |
| 3302 | |
| 3303 | function parseBindingList(kind, options) { |
| 3304 | var list = []; |
| 3305 | |
| 3306 | do { |
| 3307 | list.push(parseLexicalBinding(kind, options)); |
| 3308 | if (!match(',')) { |
| 3309 | break; |
| 3310 | } |
| 3311 | lex(); |
| 3312 | } while (startIndex < length); |
| 3313 | |
| 3314 | return list; |
| 3315 | } |
| 3316 | |
| 3317 | function parseLexicalDeclaration(options) { |
| 3318 | var kind, declarations, node = new Node(); |
no test coverage detected