(code: number)
| 1552 | } |
| 1553 | |
| 1554 | function isSelectorlessNameChar(code: number): boolean { |
| 1555 | return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_; |
| 1556 | } |
| 1557 | |
| 1558 | function isAttributeTerminator(code: number): boolean { |
| 1559 | return code === chars.$SLASH || code === chars.$GT || code === chars.$LT || code === chars.$EOF; |
no outgoing calls
no test coverage detected