Altered method code displayed in browser after accept (3.4 #5170)

Chris Becker chbecker at neo.rr.com
Thu May 15 16:39:18 UTC 2003


Hi all,

When a method is accepted in a system browser, the text is sometimes
refreshed using a compiler-altered version of the method. For example:

methodA: anExample
	"A comment."
	| tempVar |
	tempVar _ anExample, ' is an example'.
	^ tempVar

... becomes ...

methodA: t1 
	| t2 |
	t2 _ t1 , ' is an example'.
	^ t2

Is there a fix for this issue? I'm running 3.4 #5170.

Thanks in advance,

Chris Becker




More information about the Squeak-dev mailing list