Re: [perl #46499] [RFE] Allow comment lines in PIR .param list

2008-05-23 Thread Klaas-Jan Stol
On Fri, May 23, 2008 at 2:42 PM, Andrew Whitworth <[EMAIL PROTECTED]> wrote: > On Fri, May 23, 2008 at 6:55 AM, Klaas-Jan Stol <[EMAIL PROTECTED]> wrote: >> IIRC, the blank line stuff in .param lines has to do with the >> helper_state non-terminal; this is a kludge to make things work >> currently,

Re: [perl #46499] [RFE] Allow comment lines in PIR .param list

2008-05-23 Thread Klaas-Jan Stol
On Fri, May 23, 2008 at 4:05 AM, Will Coleda via RT <[EMAIL PROTECTED]> wrote: > On Wed Oct 17 12:09:54 2007, bernhard wrote: >> Currently following PIR is failing because of the '#' in the '.param' list. >> >> .sub main :main >> >> ( $S1 ) = my_sub( 'hello', 'world' ) >> say $S1 >> .end >> >>

[perl #46499] [RFE] Allow comment lines in PIR .param list

2008-05-22 Thread Will Coleda via RT
On Wed Oct 17 12:09:54 2007, bernhard wrote: > Currently following PIR is failing because of the '#' in the '.param' list. > > .sub main :main > > ( $S1 ) = my_sub( 'hello', 'world' ) > say $S1 > .end > > .sub my_sub > .param string str1 > # > .param string str3 > > .local

[perl #46499] [RFE] Allow comment lines in PIR .param list

2008-01-12 Thread Allison Randal via RT
General idea approved, pending review of implementation changes.

Re: [perl #46499] [RFE] Allow comment lines in PIR .param list

2007-10-17 Thread jerry gay
On 10/17/07, via RT Bernhard Schmalhofer <[EMAIL PROTECTED]> wrote: > # New Ticket Created by Bernhard Schmalhofer > # Please include the string: [perl #46499] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=46499 > > > > Cu

Re: [perl #46499] [RFE] Allow comment lines in PIR .param list

2007-10-17 Thread Will Coleda
On Oct 17, 2007, at 3:09 PM, Bernhard Schmalhofer (via RT) wrote: This surprised me, as I expected that '#' lines would be ignored. So I propose to tweak the PIR grammar such that comment lines are allowed Yes please. -- Will "Coke" Coleda [EMAIL PROTECTED]

[perl #46499] [RFE] Allow comment lines in PIR .param list

2007-10-17 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #46499] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46499 > Currently following PIR is failing because of the '#' in the '.param' list. .su