(source: string, end: number)
| 856 | } |
| 857 | |
| 858 | function skipWhitespace(source: string, end: number): number { |
| 859 | while (end > 0 && /\s/.test(source[end - 1])) { |
| 860 | end-- |
| 861 | } |
| 862 | return end |
| 863 | } |
| 864 | |
| 865 | function isSkippableDirectiveComment(line: string): boolean { |
| 866 | const trimmed = line.trim() |
no outgoing calls
no test coverage detected