(code: number)
| 1507 | } |
| 1508 | |
| 1509 | function isBlockNameChar(code: number): boolean { |
| 1510 | return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_; |
| 1511 | } |
| 1512 | |
| 1513 | function isBlockParameterChar(code: number): boolean { |
| 1514 | return code !== chars.$SEMICOLON && isNotWhitespace(code); |
no outgoing calls
no test coverage detected
searching dependent graphs…