()
| 1393 | } |
| 1394 | |
| 1395 | parseIdentifier() { |
| 1396 | const startPos = this.pos; |
| 1397 | |
| 1398 | while (this.pos < this.length && this.isIdentifierChar(this.content.charCodeAt(this.pos))) { |
| 1399 | this.pos++; |
| 1400 | } |
| 1401 | |
| 1402 | return this.content.slice(startPos, this.pos); |
| 1403 | } |
| 1404 | |
| 1405 | static toDTS(tree) { |
| 1406 | let output = ''; |
no test coverage detected