one more attempt

This commit is contained in:
cooldome
2018-06-28 09:21:09 +01:00
parent c20d1ac1c0
commit 541c2a3fec

View File

@@ -1692,12 +1692,14 @@ proc isException*(t: PType): bool =
# check if `y` is object type and it inherits from Exception
assert(t != nil)
if t.kind notin {tyObject, tyGenericInst}:
return false
var base = t
while base != nil and base.kind in {tyRef, tyObject, tyGenericInst, tyAlias}:
while base != nil:
if base.sym != nil and base.sym.magic == mException:
return true
if base.len == 0: break
else: base = base.lastSon
base = base.lastSon
return false
proc isImportedException*(t: PType; conf: ConfigRef): bool =