[refactoring] remove unused imports in the compiler and in some stdlib modules

(cherry picked from commit 07d465ca42)
This commit is contained in:
Araq
2019-07-18 00:36:03 +02:00
committed by narimiran
parent 3c6d442ce5
commit ddc02649a6
76 changed files with 531 additions and 558 deletions

View File

@@ -9,9 +9,7 @@
## Plugin to transform an inline iterator into a data structure.
import ".." / [ast, astalgo,
magicsys, lookups, semdata,
lambdalifting, msgs]
import ".." / [ast, lookups, semdata, lambdalifting, msgs]
proc iterToProcImpl*(c: PContext, n: PNode): PNode =
result = newNodeI(nkStmtList, n.info)

View File

@@ -9,7 +9,7 @@
## The builtin 'system.locals' implemented as a plugin.
import ".." / [pluginsupport, ast, astalgo,
import ".." / [ast, astalgo,
magicsys, lookups, semdata, lowerings]
proc semLocals*(c: PContext, n: PNode): PNode =