From 0a93768a403e6892e2cedb2f9cf917d61bae2278 Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Thu, 5 May 2016 13:45:14 -0700 Subject: [PATCH] remove unused code --- src/harness/harness.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/harness/harness.ts b/src/harness/harness.ts index 8972b6d00b6..ef9b36b50e2 100644 --- a/src/harness/harness.ts +++ b/src/harness/harness.ts @@ -871,7 +871,7 @@ namespace Harness { fileMap.set(path, (): ts.SourceFile => { throw new Error("Symlinks should always be resolved to a realpath first"); }); } const sourceFile = createSourceFileAndAssertInvariants(fileName, file.content, scriptTarget); - fileMap.set(path, ts.memoize(() => sourceFile)); + fileMap.set(path, () => sourceFile); } }