File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ module ts {
383
383
return [ path . substr ( 0 , rootLength ) ] . concat ( normalizedParts ) ;
384
384
}
385
385
386
- export function getNormalizedPathComponents ( path : string , getCurrentDirectory : ( ) => string ) {
386
+ export function getNormalizedPathComponents ( path : string , getCurrentDirectory : ( ) => string ) {
387
387
var path = normalizeSlashes ( path ) ;
388
388
var rootLength = getRootLength ( path ) ;
389
389
if ( rootLength == 0 ) {
@@ -444,7 +444,7 @@ module ts {
444
444
}
445
445
}
446
446
447
- function getNormalizedPathOrUrlComponents ( pathOrUrl : string , getCurrentDirectory : ( ) => string ) {
447
+ function getNormalizedPathOrUrlComponents ( pathOrUrl : string , getCurrentDirectory : ( ) => string ) {
448
448
if ( isUrl ( pathOrUrl ) ) {
449
449
return getNormalizedPathComponentsOfUrl ( pathOrUrl ) ;
450
450
}
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ enum EmitReturnStatus {
54
54
EmitErrorsEncountered = 4 // Emitter errors occured during emitting process
55
55
}
56
56
57
-
58
57
module FourSlashInterface {
59
58
declare var FourSlash ;
60
59
You can’t perform that action at this time.
0 commit comments