[svn:parrot] r40063 - trunk/compilers/pct/src/PCT

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Mon Jul 13 22:19:10 UTC 2009


Author: pmichaud
Date: Mon Jul 13 22:19:10 2009
New Revision: 40063
URL: https://trac.parrot.org/parrot/changeset/40063

Log:
[pct]:  Fix deprecated use of '.item' on match object

Modified:
   trunk/compilers/pct/src/PCT/HLLCompiler.pir

Modified: trunk/compilers/pct/src/PCT/HLLCompiler.pir
==============================================================================
--- trunk/compilers/pct/src/PCT/HLLCompiler.pir	Mon Jul 13 22:06:27 2009	(r40062)
+++ trunk/compilers/pct/src/PCT/HLLCompiler.pir	Mon Jul 13 22:19:10 2009	(r40063)
@@ -471,7 +471,7 @@
   compile_match:
     #push_eh err_past
     .local pmc ast
-    ast = source.'item'()
+    ast = source.'ast'()
     #pop_eh
     $I0 = isa ast, ['PAST';'Node']
     unless $I0 goto err_past


More information about the parrot-commits mailing list