[svn:parrot] r39649 - branches/pmc_pct/compilers/pmcc/src/emitter

cotto at svn.parrot.org cotto at svn.parrot.org
Thu Jun 18 10:03:22 UTC 2009


Author: cotto
Date: Thu Jun 18 10:03:17 2009
New Revision: 39649
URL: https://trac.parrot.org/parrot/changeset/39649

Log:
[pmcc] add stub get_mro_func and get_isa_func methods

Modified:
   branches/pmc_pct/compilers/pmcc/src/emitter/pmc.pm

Modified: branches/pmc_pct/compilers/pmcc/src/emitter/pmc.pm
==============================================================================
--- branches/pmc_pct/compilers/pmcc/src/emitter/pmc.pm	Thu Jun 18 09:39:26 2009	(r39648)
+++ branches/pmc_pct/compilers/pmcc/src/emitter/pmc.pm	Thu Jun 18 10:03:17 2009	(r39649)
@@ -363,6 +363,8 @@
 method generate_class_init() {
       self.update_vtable_func()
     ~ self.get_vtable_func()
+    ~ self.get_mro_func()
+    ~ self.get_isa_func()
     ~ self.class_init_func()
 }
 
@@ -517,10 +519,21 @@
 Generate C-code for update_vtable_func
 
 =cut
+
 method update_vtable_func() {
     "";
 }
 
+
+method get_mro_func() {
+
+    "";
+}
+
+method get_isa_func() {
+    "";
+}
+
 method dumper($x) {
     PIR q<
         load_bytecode "dumper.pbc"


More information about the parrot-commits mailing list