(code: number)
| 1529 | } |
| 1530 | |
| 1531 | function isBlockParameterChar(code: number): boolean { |
| 1532 | return code !== chars.$SEMICOLON && isNotWhitespace(code); |
| 1533 | } |
| 1534 | |
| 1535 | function isSelectorlessNameStart(code: number): boolean { |
| 1536 | return code === chars.$_ || (code >= chars.$A && code <= chars.$Z); |
nothing calls this directly
no test coverage detected