(s: string)
| 689 | typeNames: Iterable<string> |
| 690 | ): string { |
| 691 | const escapeRegex = (s: string): string => s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 692 | let result = code; |
| 693 | const sortedTypes = [...typeNames].sort((a, b) => b.length - a.length); |
| 694 | // Phase 1: rename each identifier globally at word boundaries. |
no outgoing calls
no test coverage detected
searching dependent graphs…