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/transf.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/transf.nim')
-rw-r--r-- | compiler/transf.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/transf.nim b/compiler/transf.nim index 4dd348742..60a7ce224 100644 --- a/compiler/transf.nim +++ b/compiler/transf.nim @@ -19,9 +19,9 @@ # * transforms 'defer' into a 'try finally' statement import - intsets, strutils, options, ast, astalgo, trees, treetab, msgs, lookups, + options, ast, astalgo, trees, msgs, idents, renderer, types, passes, semfold, magicsys, cgmeth, - sempass2, lowerings, injectdestructors, liftlocals, + lowerings, injectdestructors, liftlocals, modulegraphs, lineinfos proc transformBody*(g: ModuleGraph, prc: PSym, cache = true; |