(value: string)
| 127 | } |
| 128 | |
| 129 | function escapeRegExp(value: string): string { |
| 130 | return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 131 | } |
| 132 | |
| 133 | function experimentalDefinitionNames(definitions: DefinitionCollections): Set<string> { |
| 134 | const names = new Set<string>(); |
no outgoing calls
no test coverage detected
searching dependent graphs…