(code: number)
| 1519 | } |
| 1520 | |
| 1521 | function isSelectorlessNameChar(code: number): boolean { |
| 1522 | return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_; |
| 1523 | } |
| 1524 | |
| 1525 | function isAttributeTerminator(code: number): boolean { |
| 1526 | return code === chars.$SLASH || code === chars.$GT || code === chars.$LT || code === chars.$EOF; |
no outgoing calls
no test coverage detected
searching dependent graphs…