(code: number)
| 1511 | } |
| 1512 | |
| 1513 | function isBlockParameterChar(code: number): boolean { |
| 1514 | return code !== chars.$SEMICOLON && isNotWhitespace(code); |
| 1515 | } |
| 1516 | |
| 1517 | function isSelectorlessNameStart(code: number): boolean { |
| 1518 | return code === chars.$_ || (code >= chars.$A && code <= chars.$Z); |
nothing calls this directly
no test coverage detected
searching dependent graphs…