()
| 702 | // https://tc39.github.io/ecma262/#sec-array-initializer |
| 703 | |
| 704 | parseSpreadElement(): Node.SpreadElement { |
| 705 | const node = this.createNode(); |
| 706 | this.expect('...'); |
| 707 | const arg = this.inheritCoverGrammar(this.parseAssignmentExpression); |
| 708 | return this.finalize(node, new Node.SpreadElement(arg)); |
| 709 | } |
| 710 | |
| 711 | parseArrayInitializer(): Node.ArrayExpression { |
| 712 | const node = this.createNode(); |
no test coverage detected