()
| 3277 | } |
| 3278 | |
| 3279 | parseClassBody(): Node.ClassBody { |
| 3280 | const node = this.createNode(); |
| 3281 | const elementList = this.parseClassElementList(); |
| 3282 | |
| 3283 | return this.finalize(node, new Node.ClassBody(elementList)); |
| 3284 | } |
| 3285 | |
| 3286 | parseClassDeclaration(identifierIsOptional?: boolean): Node.ClassDeclaration { |
| 3287 | const node = this.createNode(); |
no test coverage detected