mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
one more attempt
This commit is contained in:
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user