()
| 1026 | } |
| 1027 | |
| 1028 | private _consumeAttribute() { |
| 1029 | this._consumeAttributeName(); |
| 1030 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1031 | if (this._attemptCharCode(chars.$EQ)) { |
| 1032 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1033 | this._consumeAttributeValue(); |
| 1034 | } |
| 1035 | this._attemptCharCodeUntilFn(isNotWhitespace); |
| 1036 | } |
| 1037 | |
| 1038 | private _consumeAttributeName() { |
| 1039 | const attrNameStart = this._cursor.peek(); |
no test coverage detected