(kind: string, options)
| 1860 | } |
| 1861 | |
| 1862 | parseBindingList(kind: string, options): Node.VariableDeclarator[] { |
| 1863 | const list = [this.parseLexicalBinding(kind, options)]; |
| 1864 | |
| 1865 | while (this.match(',')) { |
| 1866 | this.nextToken(); |
| 1867 | list.push(this.parseLexicalBinding(kind, options)); |
| 1868 | } |
| 1869 | |
| 1870 | return list; |
| 1871 | } |
| 1872 | |
| 1873 | isLexicalDeclaration(): boolean { |
| 1874 | const state = this.scanner.saveState(); |
no test coverage detected