diff options
author | Araq <rumpf_a@web.de> | 2016-10-31 19:47:20 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-10-31 19:47:20 +0100 |
commit | 29db0d8585a0b2d3297a1e7745bfb92bf0c943b7 (patch) | |
tree | 99ba53779741e018f1f28c62e7e527b304ea8d8d /compiler/passaux.nim | |
parent | 773d17cd14c6f4457245bb3039f644bc3cef64bb (diff) | |
download | Nim-29db0d8585a0b2d3297a1e7745bfb92bf0c943b7.tar.gz |
refactoring complete: explicit ident cache
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r-- | compiler/passaux.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/passaux.nim b/compiler/passaux.nim index d4361a671..dc99ffd0c 100644 --- a/compiler/passaux.nim +++ b/compiler/passaux.nim @@ -10,9 +10,9 @@ ## 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 = +proc verboseOpen(s: PSym; cache: IdentCache): PPassContext = #MessageOut('compiling ' + s.name.s); result = nil # we don't need a context rawMessage(hintProcessing, s.name.s) |