diff options
author | Araq <rumpf_a@web.de> | 2019-07-18 00:36:03 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-18 00:36:03 +0200 |
commit | 07d465ca42c98c07dedee0d4834afae5c87702da (patch) | |
tree | 2f8b1a315372c295068a1a4f599913f1326fe278 /compiler/main.nim | |
parent | f50e4500c257e3d57654f5230db75042da233d24 (diff) | |
download | Nim-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.nim | 10 |
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): |