[svn:parrot] r48908 - trunk/runtime/parrot/library

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Fri Sep 10 15:27:54 UTC 2010


Author: pmichaud
Date: Fri Sep 10 15:27:53 2010
New Revision: 48908
URL: https://trac.parrot.org/parrot/changeset/48908

Log:
[p6object]:  PCCMETHODS changed type from 'NCI' to 'NativePCCMethod' in r48790 -- update P6object to match.

Modified:
   trunk/runtime/parrot/library/P6object.pir

Modified: trunk/runtime/parrot/library/P6object.pir
==============================================================================
--- trunk/runtime/parrot/library/P6object.pir	Fri Sep 10 08:42:05 2010	(r48907)
+++ trunk/runtime/parrot/library/P6object.pir	Fri Sep 10 15:27:53 2010	(r48908)
@@ -260,6 +260,9 @@
     .local pmc methodpmc
     methodname = shift methoditer
     methodpmc = methods[methodname]
+    # don't add NativePCCMethods
+    $I0 = isa methodpmc, 'NativePCCMethod'
+    if $I0 goto method_loop
     # don't add NCI methods (they don't work)
     $I0 = isa methodpmc, 'NCI'
     if $I0 goto method_loop


More information about the parrot-commits mailing list