Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent Pharo from executing a #startUp-Method of a class?

I added a startUp-Method to one of my classes that immediatelly quits my image. Is there a way to prevent Pharo from executing that method so that I can fix it?

like image 302
AME Avatar asked Dec 31 '11 14:12

AME


1 Answers

No, this is an issue of ongoing discussion. See this post on the Pharo mailing list.

Your only way to recover the image is to hack the VM, which I describe here. If you go that route, use the stack VM instead of the JIT (the same thread explains why further down).

like image 54
Sean DeNigris Avatar answered Oct 05 '22 12:10

Sean DeNigris