We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c898d commit 49d9f72Copy full SHA for 49d9f72
compiler/passaux.nim
@@ -20,8 +20,10 @@ type
20
21
proc verboseOpen(graph: ModuleGraph; s: PSym; idgen: IdGenerator): PPassContext =
22
#MessageOut('compiling ' + s.name.s);
23
+ let flag = if optListFullPaths in graph.config.globalOptions: foAbs else: foShort
24
+ let fname = graph.config.toFilenameOption(s.position.FileIndex, flag)
25
result = VerboseRef(config: graph.config, idgen: idgen)
- rawMessage(graph.config, hintProcessing, s.name.s)
26
+ rawMessage(graph.config, hintProcessing, fname)
27
28
proc verboseProcess(context: PPassContext, n: PNode): PNode =
29
result = n
0 commit comments