diff options
author | Araq <rumpf_a@web.de> | 2017-12-21 10:03:33 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-12-21 10:03:33 +0100 |
commit | ee67a67ac450968fc3d753005fe7362ac0414a10 (patch) | |
tree | 329b948726df61622d3785ac0da3e760fde954d5 /compiler/renderer.nim | |
parent | 2775cda6e1eaa9e64ccf1f5cd48e2447e059f2b9 (diff) | |
download | Nim-ee67a67ac450968fc3d753005fe7362ac0414a10.tar.gz |
first steps in adding template/macro calls to stack traces
Diffstat (limited to 'compiler/renderer.nim')
-rw-r--r-- | compiler/renderer.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/renderer.nim b/compiler/renderer.nim index 2092fc67c..a514bf6b7 100644 --- a/compiler/renderer.nim +++ b/compiler/renderer.nim @@ -1397,8 +1397,8 @@ proc gsub(g: var TSrcGen, n: PNode, c: TContext) = put(g, tkBracketRi, "]") of nkTupleClassTy: put(g, tkTuple, "tuple") - of nkMetaNode_Obsolete: - put(g, tkParLe, "(META|") + of nkComesFrom: + put(g, tkParLe, "(ComesFrom|") gsub(g, n, 0) put(g, tkParRi, ")") of nkGotoState, nkState: |