Removed unused declarations in 'compilerRunner.ts'.

This commit is contained in:
Daniel Rosenwasser
2015-12-17 15:02:20 -08:00
parent 3dee60f6ef
commit 4a07ee730a

View File

@@ -251,7 +251,6 @@ class CompilerBaselineRunner extends RunnerBase {
const allFiles = toBeCompiled.concat(otherFiles).filter(file => !!program.getSourceFile(file.unitName));
const fullWalker = new TypeWriterWalker(program, /*fullTypeCheck*/ true);
const pullWalker = new TypeWriterWalker(program, /*fullTypeCheck*/ false);
const fullResults: ts.Map<TypeWriterResult[]> = {};
const pullResults: ts.Map<TypeWriterResult[]> = {};