From 1b43bd8e83f629d86b79ae338d7606689680bbf9 Mon Sep 17 00:00:00 2001 From: Bill Ticehurst Date: Sun, 26 Jun 2016 23:33:46 -0700 Subject: [PATCH] Removed old TODO comment --- src/compiler/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 48a1dcc73e7..cee0936fafd 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -1901,7 +1901,7 @@ namespace ts { // See if we need to reprocess the imports due to prior skipped imports if (file && lookUp(modulesWithElidedImports, file.path)) { - if (currentNodeModulesJsDepth < maxNodeModulesJsDepth) { // TODO: Check for off-by-ones + if (currentNodeModulesJsDepth < maxNodeModulesJsDepth) { modulesWithElidedImports[file.path] = false; processImportedModules(file, getDirectoryPath(fileName)); }