(fileString: string)
| 754 | } |
| 755 | |
| 756 | private addPathVariations(fileString: string) { |
| 757 | const curName = SymbolTable.NormalizePath(fileString); |
| 758 | const curSimpleName = path.basename(curName); |
| 759 | this.addToFileMap(curSimpleName, curSimpleName); |
| 760 | this.addToFileMap(curSimpleName, curName); |
| 761 | this.addToFileMap(curName, curSimpleName); |
| 762 | return { curSimpleName, curName }; |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | protected getFileNameHashed(fileName: string): string { |
no test coverage detected