diff options
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r-- | compiler/passaux.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/passaux.nim b/compiler/passaux.nim index d4361a671..eeaf12953 100644 --- a/compiler/passaux.nim +++ b/compiler/passaux.nim @@ -10,9 +10,11 @@ ## implements some little helper passes import - strutils, ast, astalgo, passes, msgs, options, idgen + strutils, ast, astalgo, passes, idents, msgs, options, idgen -proc verboseOpen(s: PSym): PPassContext = +from modulegraphs import ModuleGraph + +proc verboseOpen(graph: ModuleGraph; s: PSym; cache: IdentCache): PPassContext = #MessageOut('compiling ' + s.name.s); result = nil # we don't need a context rawMessage(hintProcessing, s.name.s) |