[squeak-dev] Re: problem face with plugin

Andreas Raab andreas.raab at gmx.de
Mon Oct 6 20:08:27 UTC 2008


Ang Beepeng wrote:
> 	xVec := self loadArgumentVector: (result := interpreterProxy
> stackObjectValue: 0).

This may be the problem. I'm not sure if the CCodeGen can deal with the 
nested assignment properly. Try rewriting this as:

	result := interpreterProxy stackObjectValue: 0.
	xVec := self loadArgumentVector: result.

Cheers,
   - Andreas



More information about the Squeak-dev mailing list