diff options
Diffstat (limited to 'compiler/astalgo.nim')
-rw-r--r-- | compiler/astalgo.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/astalgo.nim b/compiler/astalgo.nim index be8d23b90..62d49445b 100644 --- a/compiler/astalgo.nim +++ b/compiler/astalgo.nim @@ -499,6 +499,9 @@ proc value(this: var DebugPrinter; value: PType): void = this.key "kind" this.value value.kind + this.key "id" + this.value value.id + if value.sym != nil: this.key "sym" this.value value.sym |