kjs wrote:
In order to keep PIR syntax clean, I propose to remove the -> syntax for
method calls, as it is the same as the dot-notation.
Also agreed. Get it into DEPRECATED.pod now so we can remove it after
the next release.
Allison
On 9/18/07, Will Coleda via RT <[EMAIL PROTECTED]> wrote:
> On Wed Sep 12 08:33:04 2007, kjs wrote:
> > Hi,
> >
> > IMCC currently allows for C++ style method invocation (using a pointer as
> > invocant).
> >
> > So, while this works:
> >
> > .sub main
> >$P0 = new 'Foo'
> >$P0.'bar'()
> >