in Pharo, how can I find the currently evaluating stack?
feedback
|
|
Well, in fact, the issue aint that simple: In Visualworks Smalltalk, stack access is extermly expensive because it uses the native C-stack and thus any access to In Pharo (and Squeak, for that matter) it is less awkward, since it uses Smalltalk objects for the stack. But still the object pool which caches stack frames is flushed upon each call. (Yes, other than eg in Java, pooling objects does improve performance in Squeak ... welcome back to the 90ies :) | |||
|
feedback
|
|
You evaluate
Here, | |||||
|
feedback
|