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 c754999 commit fcfc25eCopy full SHA for fcfc25e
src/compiler/core.ts
@@ -833,7 +833,7 @@ namespace ts {
833
}
834
835
836
- export function copyListRemovingItem<T>(item: T, list: T[]) {
+ export function copyListRemovingItem<T>(item: T, list: T[]) {
837
let copiedList: T[] = [];
838
for (var i = 0, len = list.length; i < len; i++) {
839
if (list[i] != item) {
@@ -842,4 +842,4 @@ namespace ts {
842
843
return copiedList;
844
845
-}
+}
src/compiler/sys.ts
@@ -274,7 +274,7 @@ namespace ts {
274
startWatchTimer: startWatchTimer,
275
addFile: addFile,
276
removeFile: removeFile
277
- }
+ };
278
279
280
// REVIEW: for now this implementation uses polling.
0 commit comments