summary refs log tree commit diff stats
path: root/compiler/main.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-18 00:36:03 +0200
committerAraq <rumpf_a@web.de>2019-07-18 00:36:03 +0200
commit07d465ca42c98c07dedee0d4834afae5c87702da (patch)
tree2f8b1a315372c295068a1a4f599913f1326fe278 /compiler/main.nim
parentf50e4500c257e3d57654f5230db75042da233d24 (diff)
downloadNim-07d465ca42c98c07dedee0d4834afae5c87702da.tar.gz
[refactoring] remove unused imports in the compiler and in some stdlib modules
Diffstat (limited to 'compiler/main.nim')
-rw-r--r--compiler/main.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/main.nim b/compiler/main.nim
index 460fd90c7..ce80af36d 100644
--- a/compiler/main.nim
+++ b/compiler/main.nim
@@ -13,12 +13,12 @@ when not defined(nimcore):
   {.error: "nimcore MUST be defined for Nim's core tooling".}
 
 import
-  llstream, strutils, ast, astalgo, lexer, syntaxes, renderer, options, msgs,
-  os, condsyms, times,
-  wordrecg, sem, semdata, idents, passes, extccomp,
+  llstream, strutils, ast, lexer, syntaxes, options, msgs,
+  condsyms, times,
+  sem, idents, passes, extccomp,
   cgen, json, nversion,
-  platform, nimconf, importer, passaux, depends, vm, vmdef, types, idgen,
-  parser, modules, ccgutils, sigmatch, ropes,
+  platform, nimconf, passaux, depends, vm, idgen,
+  parser, modules,
   modulegraphs, tables, rod, lineinfos, pathutils
 
 when not defined(leanCompiler):