(str: string)
| 73 | } |
| 74 | |
| 75 | function escapeRegex(str: string): string { |
| 76 | return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 77 | } |
| 78 | |
| 79 | function isDefinitionLine(line: string, symbolName: string): boolean { |
| 80 | const definitionPatterns = [ |
no outgoing calls
no test coverage detected