(code: number)
| 1544 | } |
| 1545 | |
| 1546 | function isBlockParameterChar(code: number): boolean { |
| 1547 | return code !== chars.$SEMICOLON && isNotWhitespace(code); |
| 1548 | } |
| 1549 | |
| 1550 | function isSelectorlessNameStart(code: number): boolean { |
| 1551 | return code === chars.$_ || (code >= chars.$A && code <= chars.$Z); |
nothing calls this directly
no test coverage detected