(code: number)
| 1537 | } |
| 1538 | |
| 1539 | function isSelectorlessNameChar(code: number): boolean { |
| 1540 | return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_; |
| 1541 | } |
| 1542 | |
| 1543 | function isAttributeTerminator(code: number): boolean { |
| 1544 | return code === chars.$SLASH || code === chars.$GT || code === chars.$LT || code === chars.$EOF; |
no outgoing calls
no test coverage detected