metalink injection into closures ?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

metalink injection into closures ?

Ben Coman
When we execute this...

counter
"Greeter new counter"
    | count |
    count := 0.
    [100 timesRepeat: [count := count + 1.  
        self inform: count + 1 printString.
        2 seconds wait]] forkNamed: 'Count de Money'

and in the dubgger correct and save the code we normally get the message...
    "Method for block not found on stack, can't edit and continue."

and I wonder if anything with Metalinks would facilitate inject 
the corrected bytecode into the Process so that it oculd continue.

cheers -ben