(c: string)
| 220 | } |
| 221 | |
| 222 | function isWordStart(c: string): boolean { |
| 223 | return isWordChar(c) || c === '\\' |
| 224 | } |
| 225 | |
| 226 | function isIdentStart(c: string): boolean { |
| 227 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_' |
no test coverage detected