diff --git a/src/compiler/core.ts b/src/compiler/core.ts index 5207f4c7d81..432ae6ab8cd 100644 --- a/src/compiler/core.ts +++ b/src/compiler/core.ts @@ -383,7 +383,7 @@ module ts { return [path.substr(0, rootLength)].concat(normalizedParts); } - export function getNormalizedPathComponents(path: string, getCurrentDirectory: ()=>string) { + export function getNormalizedPathComponents(path: string, getCurrentDirectory: () => string) { var path = normalizeSlashes(path); var rootLength = getRootLength(path); if (rootLength == 0) { @@ -444,7 +444,7 @@ module ts { } } - function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: ()=>string) { + function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: () => string) { if (isUrl(pathOrUrl)) { return getNormalizedPathComponentsOfUrl(pathOrUrl); } diff --git a/tests/cases/fourslash/fourslash.ts b/tests/cases/fourslash/fourslash.ts index 1492492eae5..836e139c61c 100644 --- a/tests/cases/fourslash/fourslash.ts +++ b/tests/cases/fourslash/fourslash.ts @@ -54,7 +54,6 @@ enum EmitReturnStatus { EmitErrorsEncountered = 4 // Emitter errors occured during emitting process } - module FourSlashInterface { declare var FourSlash;