()
| 1011 | } |
| 1012 | |
| 1013 | private _consumeAttribute() { |
| 1014 | this._consumeAttributeName(); |
| 1015 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1016 | if (this._attemptCharCode(chars.$EQ)) { |
| 1017 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1018 | this._consumeAttributeValue(); |
| 1019 | } |
| 1020 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1021 | } |
| 1022 | |
| 1023 | private _consumeAttributeName() { |
| 1024 | const attrNameStart = this._cursor.peek(); |
no test coverage detected