help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] How does one use the debugger?


From: Paolo Bonzini
Subject: Re: [Help-smalltalk] How does one use the debugger?
Date: Tue, 26 Oct 2010 10:29:28 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100907 Fedora/3.1.3-1.fc13 Lightning/1.0b3pre Mnenhy/0.8.3 Thunderbird/3.1.3

On 10/26/2010 10:22 AM, Stephen Woolerton wrote:

------------------------------
Test to see if I can run gst from the command line and have it stop at a
'self halt' and allow me to debug...

$] cat ./Tests2.st
   tester := LDAPTest new.
   self halt.
   'debug now' displayNl.
   tester testBind.
------


Ah, missed this.

All statements in doits are ran independently by default. You need to wrap it with

Eval [
    tester := LDAPTest new.
    self halt.
    'debug now' displayNl.
    tester testBind.
]

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]