I use the custom macro METHCALL:
(methcall :bar foo arg1 arg2) -> foo.bar(arg1, arg2)
-Red
One more note: if you don't want to write ((slot-value obj 'method)
args) because you want the same code to work in CL, just write
(funcall (slot-value obj 'method) args).
>> With this patch Parenscript is finally rid of the evil symbol-abuse
>> conventions, which IMO is the only thing from the original design of
>> Parenscript that can in retrospect be called a mistake.
>
> It's better to not abuse symbols but it still feels weird
> having SLOT-VALUE in function call context...
>
> Leslie
>
> --
> http://www.linkedin.com/in/polzer
>
>
> _______________________________________________
> parenscript-devel mailing list
> parenscript-devel@common-lisp.net
> http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
>
_______________________________________________
parenscript-devel mailing list
parenscript-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel