From 399e1c88c5fe13cdecaf48cbd8e4b15fa11ee21e Mon Sep 17 00:00:00 2001 From: "Brian T. Rice" Date: Wed, 2 Feb 2011 14:02:02 -0800 Subject: [PATCH] Made the Debugger's lookup of local variables not precede the ability to send messages. --- src/core/debugger.slate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/debugger.slate b/src/core/debugger.slate index 1ba7709..67bc033 100644 --- a/src/core/debugger.slate +++ b/src/core/debugger.slate @@ -155,7 +155,7 @@ f@(Debugger Frame traits) localForOffset: offset f@(Debugger Frame traits) stackOffsetForLocal: name [ f method method sourceTree - ifNil: [error: 'No source information available for the current frame.'] + ifNil: [warn: 'No source information available for the current frame.'. ] ifNotNilDo: [| :src | (src inputVariables indexOfFirstSatisfying: [| :var | var name =~ name]) -- 2.11.4.GIT