From 42c8fd1fe2e8a045741c18cd02f9410cb7a990f8 Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 4 Nov 2012 22:40:51 +0100 Subject: [PATCH] bugfixes for exception tracking --- compiler/sempass2.nim | 11 ++++++++--- tests/reject/teffects1.nim | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/compiler/sempass2.nim b/compiler/sempass2.nim index 1811beb2d2..86c7929d9e 100644 --- a/compiler/sempass2.nim +++ b/compiler/sempass2.nim @@ -123,7 +123,8 @@ proc catches(tracked: PEffects, e: PType) = setLen(tracked.exc.sons, L) proc catchesAll(tracked: PEffects) = - setLen(tracked.exc.sons, tracked.bottom) + if not isNil(tracked.exc.sons): + setLen(tracked.exc.sons, tracked.bottom) proc track(tracked: PEffects, n: PNode) proc trackTryStmt(tracked: PEffects, n: PNode) = @@ -156,7 +157,9 @@ proc trackPragmaStmt(tracked: PEffects, n: PNode) = var it = n.sons[i] if whichPragma(it) == wEffects: # list the computed effects up to here: + pushInfoContext(n.info) listEffects(tracked) + popInfoContext() proc raisesSpec*(n: PNode): PNode = for i in countup(0, sonsLen(n) - 1): @@ -253,9 +256,10 @@ proc checkRaisesSpec(spec, real: PNode) = used.incl(s) break search # XXX call graph analysis would be nice here! - localError(spec.info, errInstantiationFrom) + pushInfoContext(spec.info) localError(r.info, errGenerated, "can raise an unlisted exception: " & typeToString(r.typ)) + popInfoContext() # hint about unnecessarily listed exception types: for s in 0 ..