You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/moduleNameResolver.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ namespace ts {
15
15
}
16
16
17
17
/** Array that is only intended to be pushed to, never read. */
18
-
interfacePush<T>{
18
+
exportinterfacePush<T>{
19
19
push(value: T): void;
20
20
}
21
21
@@ -358,7 +358,7 @@ namespace ts {
358
358
* Then it computes the set of parent folders for 'directory' that should have the same module resolution result
359
359
* and for every parent folder in set it adds entry: parent -> module resolution. .
360
360
* Lets say we first directory name: /a/b/c/d/e and resolution result is: /a/b/bar.ts.
361
-
* Set of parent folders that should have the same result will be:
361
+
* Set of parent folders that should have the same result will be:
362
362
* [
363
363
* /a/b/c/d, /a/b/c, /a/b
364
364
* ]
@@ -1023,7 +1023,7 @@ namespace ts {
1023
1023
1024
1024
/**
1025
1025
* Represents result of search. Normally when searching among several alternatives we treat value `undefined` as indicator
1026
-
* that search fails and we should try another option.
1026
+
* that search fails and we should try another option.
1027
1027
* However this does not allow us to represent final result that should be used instead of further searching (i.e. a final result that was found in cache).
1028
1028
* SearchResult is used to deal with this issue, its values represents following outcomes:
0 commit comments