(code: number)
| 1461 | } |
| 1462 | |
| 1463 | function isNameEnd(code: number): boolean { |
| 1464 | return ( |
| 1465 | chars.isWhitespace(code) || |
| 1466 | code === chars.$GT || |
| 1467 | code === chars.$LT || |
| 1468 | code === chars.$SLASH || |
| 1469 | code === chars.$SQ || |
| 1470 | code === chars.$DQ || |
| 1471 | code === chars.$EQ || |
| 1472 | code === chars.$EOF |
| 1473 | ); |
| 1474 | } |
| 1475 | |
| 1476 | function isPrefixEnd(code: number): boolean { |
| 1477 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…