(quoteChar: number)
| 1113 | } |
| 1114 | |
| 1115 | private _consumeQuote(quoteChar: number) { |
| 1116 | this._beginToken(TokenType.ATTR_QUOTE); |
| 1117 | this._requireCharCode(quoteChar); |
| 1118 | this._endToken([String.fromCodePoint(quoteChar)]); |
| 1119 | } |
| 1120 | |
| 1121 | private _consumeTagOpenEnd() { |
| 1122 | const tokenType = this._attemptCharCode(chars.$SLASH) |
no test coverage detected