(key: string, newMap: string)
| 744 | } |
| 745 | |
| 746 | private addToFileMap(key: string, newMap: string): string[] { |
| 747 | newMap = SymbolTable.NormalizePath(newMap); |
| 748 | const value = this.fileMap[key] || []; |
| 749 | if (value.indexOf(newMap) === -1) { |
| 750 | value.push(newMap); |
| 751 | } |
| 752 | this.fileMap[key] = value; |
| 753 | return value; |
| 754 | } |
| 755 | |
| 756 | private addPathVariations(fileString: string) { |
| 757 | const curName = SymbolTable.NormalizePath(fileString); |
no test coverage detected