(c: string)
| 226 | } |
| 227 | |
| 228 | function isIdentStart(c: string): boolean { |
| 229 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_' |
| 230 | } |
| 231 | |
| 232 | function isIdentChar(c: string): boolean { |
| 233 | return isIdentStart(c) || (c >= '0' && c <= '9') |
no outgoing calls
no test coverage detected