[svn:parrot] r38406 - branches/pmc_pct/compilers/pmc/src

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Apr 29 12:19:58 UTC 2009


Author: bacek
Date: Wed Apr 29 12:19:58 2009
New Revision: 38406
URL: https://trac.parrot.org/parrot/changeset/38406

Log:
Fix param passing to vtable_info

Modified:
   branches/pmc_pct/compilers/pmc/src/vtable_info.pir

Modified: branches/pmc_pct/compilers/pmc/src/vtable_info.pir
==============================================================================
--- branches/pmc_pct/compilers/pmc/src/vtable_info.pir	Wed Apr 29 11:34:05 2009	(r38405)
+++ branches/pmc_pct/compilers/pmc/src/vtable_info.pir	Wed Apr 29 12:19:58 2009	(r38406)
@@ -71,7 +71,7 @@
 
 .sub 'name' :method
     .param string name      :optional
-    .param int    has_name
+    .param int    has_name  :opt_flag
     .tailcall self.'attr'('name', name, has_name)
 .end
 
@@ -83,7 +83,7 @@
 
 .sub 'ret_type' :method
     .param string type      :optional
-    .param int    has_type
+    .param int    has_type  :opt_flag
     .tailcall self.'attr'('ret_type', type, has_type)
 .end
 
@@ -94,8 +94,8 @@
 =cut
 
 .sub 'parameters' :method
-    .param string parameters    :optional
-    .param int    has_parameters
+    .param string parameters        :optional
+    .param int    has_parameters    :opt_flag
     .tailcall self.'attr'('parameters', parameters, has_parameters)
 .end
 
@@ -107,7 +107,7 @@
 
 .sub 'is_write' :method
     .param int is_write     :optional
-    .param int has_is_write
+    .param int has_is_write :opt_flag
     .tailcall self.'attr'('is_write', is_write, has_is_write)
 .end
 


More information about the parrot-commits mailing list