What has changed in MethodContext?

Philippe Marschall philippe.marschall at gmail.com
Sat Apr 15 12:38:01 UTC 2006


2006/4/14, Dave Mason <dmason at sarg.ryerson.ca>:
> I am using Avi Bryant's Continuation class, and it sends a #localSize,
> #localAt: and #localAt:put: messages to a MethodContext to manipulate
> the locals.
>
> Unfortunately, the image I'm using (3.8g-6548) doesn't have any methods
> that I recognize as equivalent.

In my 3.8 they are all classextensios in the seaside package

homeReceiver
	^ self home receiver

localAt: aNumber
	^ self at: aNumber

localAt: aNumber put: anObject
	^ self at: aNumber put: anObject

localSize
	^ self size

Cheers
Philippe



More information about the Squeak-dev mailing list