(quoteChar: number)
| 1098 | } |
| 1099 | |
| 1100 | private _consumeQuote(quoteChar: number) { |
| 1101 | this._beginToken(TokenType.ATTR_QUOTE); |
| 1102 | this._requireCharCode(quoteChar); |
| 1103 | this._endToken([String.fromCodePoint(quoteChar)]); |
| 1104 | } |
| 1105 | |
| 1106 | private _consumeTagOpenEnd() { |
| 1107 | const tokenType = this._attemptCharCode(chars.$SLASH) |
no test coverage detected