Dan Sugalski <[EMAIL PROTECTED]> writes:
> At 9:49 AM +0100 3/12/04, Leopold Toetsch wrote:
>>Dan Sugalski wrote:
>>
>>>Calling a method:
>>>
>>> object.variable(pararms)
>>
>>Do we need the more explicit pcc_call syntax too:
>>
>> .pcc_begin
>> .arg x
>> .meth_call PObj, ("meth" | PMeth ) [, PReturnContinuation ]
>> .result r
>> .pcc_end
>
> Sure. Or we could make it:
>
> .pcc_begin
> .arg x
> .object y
> .meth_call "foo"
> .result r
> .pcc_end
>
> to make things simpler.
So long as you can also do
.meth_call "foo", PReturnContinuation