Generally speaking, and from my understanding, you will not be able to do:
SomeClass compile: 'initialize
�� �� ��MyEvilHack dostuff.
�� �� ��^ super initialize '
In newspeak.
And that's because you are not able to do:��
SomeClass compile: '...'
Newspeak uses object capabilities, and following those principles, you will only be able to compile and install code in a class, if somebody gives you a capability to do so.
Then, the problem is that right now Pharo's reflective API is convoluted with the base API, and thus from any piece of code you can do e.g.,:
anyObject superclass superclass allSubclasses...
A possible solution to this is to separate the reflective API from the base API.