(quoteChar: number)
| 1081 | } |
| 1082 | |
| 1083 | private _consumeQuote(quoteChar: number) { |
| 1084 | this._beginToken(TokenType.ATTR_QUOTE); |
| 1085 | this._requireCharCode(quoteChar); |
| 1086 | this._endToken([String.fromCodePoint(quoteChar)]); |
| 1087 | } |
| 1088 | |
| 1089 | private _consumeTagOpenEnd() { |
| 1090 | const tokenType = this._attemptCharCode(chars.$SLASH) |
no test coverage detected