We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179ceda commit 0871628Copy full SHA for 0871628
src/compiler/core.ts
@@ -1158,7 +1158,7 @@ namespace ts {
1158
1159
export function normalizePath(path: string): string {
1160
path = normalizeSlashes(path);
1161
- const rootLength = getRootLength(path); // TODO: (arozga) this expects un-slash-normalized strings. eg: 'x:\\...'
+ const rootLength = getRootLength(path);
1162
const root = path.substr(0, rootLength);
1163
const normalized = getNormalizedParts(path, rootLength);
1164
if (normalized.length) {
0 commit comments