()
| 494 | } |
| 495 | |
| 496 | #consumeStyleReference() { |
| 497 | var token = this.#makeToken("STYLE_REF"); |
| 498 | var value = this.#consumeChar(); |
| 499 | while (this.#isAlpha(this.#currentChar()) || this.#currentChar() === "-") { |
| 500 | value += this.#consumeChar(); |
| 501 | } |
| 502 | token.value = value; |
| 503 | token.end = this.#position; |
| 504 | return token; |
| 505 | } |
| 506 | |
| 507 | #consumeTemplateLogic() { |
| 508 | var token = this.#makeToken("IDENTIFIER"); |
no test coverage detected