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