[svn:parrot] r35834 - trunk/languages/pynie/src/parser

[email protected] Tue, 20 Jan 2009 10:52:52 -0800 (PST)
Newsgroups perl.cvs.parrot
Message-ID <[email protected]>
Author: pmichaud
Date: Tue Jan 20 10:52:51 2009
New Revision: 35834

Modified:
   trunk/languages/pynie/src/parser/Grammar.pg

Log:
[pynie]:  Convert n_neg -> neg (RT #58410).


Modified: trunk/languages/pynie/src/parser/Grammar.pg
==============================================================================
--- trunk/languages/pynie/src/parser/Grammar.pg	(original)
+++ trunk/languages/pynie/src/parser/Grammar.pg	Tue Jan 20 10:52:51 2009
@@ -640,7 +640,7 @@
 proto infix:<**>   is looser('term:')        { ... }
 proto prefix:<~>   is looser(infix:<**>)     { ... }
 proto prefix:<+>   is looser(prefix:<~>)     { ... }
-proto prefix:<->   is equiv(prefix:<+>)  is pirop('n_neg')     { ... }
+proto prefix:<->   is equiv(prefix:<+>)  is pirop('neg')     { ... }
 proto infix:<*>    is looser(prefix:<+>) is pirop('mul')     { ... }
 proto infix:</>    is equiv(infix:<*>)   is pirop('div')     { ... }
 proto infix:<//>   is equiv(infix:<*>)   is pirop('fdiv')    { ... }