From fcfc25eeb040390492716626757274c945ebd47f Mon Sep 17 00:00:00 2001 From: zhengbli Date: Wed, 14 Oct 2015 16:57:08 -0700 Subject: [PATCH] Fix lint errors --- src/compiler/core.ts | 4 ++-- src/compiler/sys.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/core.ts b/src/compiler/core.ts index b57731d1f76..d0f51601b5e 100644 --- a/src/compiler/core.ts +++ b/src/compiler/core.ts @@ -833,7 +833,7 @@ namespace ts { } } - export function copyListRemovingItem(item: T, list: T[]) { + export function copyListRemovingItem(item: T, list: T[]) { let copiedList: T[] = []; for (var i = 0, len = list.length; i < len; i++) { if (list[i] != item) { @@ -842,4 +842,4 @@ namespace ts { } return copiedList; } -} +} \ No newline at end of file diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index 4bc9af8d30e..0872a2e5ba5 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -274,7 +274,7 @@ namespace ts { startWatchTimer: startWatchTimer, addFile: addFile, removeFile: removeFile - } + }; } // REVIEW: for now this implementation uses polling.