normalizePath(resource: URI): URI {
return resource;
}
if (resource.scheme === Schemas.file) {
normalizedPath = URI.file(paths.normalize(originalFSPath(resource))).path;
normalizedPath = paths.posix.normalize(resource.path);
}
path: normalizedPath
});
}
relativePath(from: URI, to: URI): string | undefined {