diff options
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r-- | compiler/passaux.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/passaux.nim b/compiler/passaux.nim index dc99ffd0c..eeaf12953 100644 --- a/compiler/passaux.nim +++ b/compiler/passaux.nim @@ -12,7 +12,9 @@ import strutils, ast, astalgo, passes, idents, msgs, options, idgen -proc verboseOpen(s: PSym; cache: IdentCache): 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) |