Re: [perl #45403] [PROPOSAL] Remove "->" syntax from IMCC

2007-09-20 Thread Allison Randal
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

Re: [perl #45403] [PROPOSAL] Remove "->" syntax from IMCC

2007-09-18 Thread jerry gay
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'() > >

[perl #45403] [PROPOSAL] Remove "->" syntax from IMCC

2007-09-18 Thread Will Coleda via RT
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'() > .end > > You could also write: > > .sub main > $P0 = new 'Foo' > $P0->bar

[perl #45403] [PROPOSAL] Remove "->" syntax from IMCC

2007-09-12 Thread via RT
# New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #45403] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45403 > Hi, IMCC currently allows for C++ style method invocation (using a pointer as invocan