diff options
author | Araq <rumpf_a@web.de> | 2014-06-27 16:08:09 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-06-27 16:08:09 +0200 |
commit | 79586487be202ffb7499a8917ac33024ce9c3a16 (patch) | |
tree | 619a84440268164a9190f4557ddab5e12ea1dc29 | |
parent | 7014d0c5c82b942c7e3e299c5b29d28ac70831fe (diff) | |
download | Nim-79586487be202ffb7499a8917ac33024ce9c3a16.tar.gz |
compiles again
-rw-r--r-- | compiler/lowerings.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/lowerings.nim b/compiler/lowerings.nim index e7b5cd987..74690ac0c 100644 --- a/compiler/lowerings.nim +++ b/compiler/lowerings.nim @@ -114,7 +114,7 @@ proc indirectAccess*(a: PNode, b: string, info: TLineInfo): PNode = #if field == nil: # debug deref.typ # echo deref.typ.id - internalAssert field != nil, b + internalAssert field != nil addSon(deref, a) result = newNodeI(nkDotExpr, info) addSon(result, deref) |