()
| 994 | } |
| 995 | |
| 996 | private _consumeAttribute() { |
| 997 | this._consumeAttributeName(); |
| 998 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 999 | if (this._attemptCharCode(chars.$EQ)) { |
| 1000 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1001 | this._consumeAttributeValue(); |
| 1002 | } |
| 1003 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1004 | } |
| 1005 | |
| 1006 | private _consumeAttributeName() { |
| 1007 | const attrNameStart = this._cursor.peek(); |
no test coverage detected