[svn:parrot] r40065 - trunk/compilers/nqp/src/Grammar
pmichaud at svn.parrot.org
pmichaud at svn.parrot.org
Mon Jul 13 22:20:30 UTC 2009
Author: pmichaud
Date: Mon Jul 13 22:20:29 2009
New Revision: 40065
URL: https://trac.parrot.org/parrot/changeset/40065
Log:
[nqp]: Fix use of deprecated ".text" method (TT #460).
Modified:
trunk/compilers/nqp/src/Grammar/Actions.pir
Modified: trunk/compilers/nqp/src/Grammar/Actions.pir
==============================================================================
--- trunk/compilers/nqp/src/Grammar/Actions.pir Mon Jul 13 22:19:56 2009 (r40064)
+++ trunk/compilers/nqp/src/Grammar/Actions.pir Mon Jul 13 22:20:29 2009 (r40065)
@@ -346,7 +346,7 @@
not_quote:
if key != 'heredoc' goto not_heredoc
$P0 = match['text']
- inline = $P0.'text'()
+ inline = $P0.'Str'()
not_heredoc:
make:
$P1 = get_hll_global ['PAST'], 'Op'
More information about the parrot-commits
mailing list