[svn:parrot] r42277 - in trunk: docs docs/pdds tools/dev

darbelo at svn.parrot.org darbelo at svn.parrot.org
Thu Nov 5 22:12:27 UTC 2009


Author: darbelo
Date: Thu Nov  5 22:12:26 2009
New Revision: 42277
URL: https://trac.parrot.org/parrot/changeset/42277

Log:
Remove mentions of the instantiate_str() VTABLE from the documentation and auxiliary scripts.

Modified:
   trunk/docs/embed.pod
   trunk/docs/pdds/pdd17_pmc.pod
   trunk/docs/pdds/pdd28_strings.pod
   trunk/tools/dev/vtablize.pl

Modified: trunk/docs/embed.pod
==============================================================================
--- trunk/docs/embed.pod	Thu Nov  5 22:08:52 2009	(r42276)
+++ trunk/docs/embed.pod	Thu Nov  5 22:12:26 2009	(r42277)
@@ -1351,8 +1351,6 @@
 
 =item C<Parrot_PMC_instantiate>
 
-=item C<Parrot_PMC_instantiate_str>
-
 =item C<Parrot_PMC_invoke>
 
 =item C<Parrot_PMC_i_pow>

Modified: trunk/docs/pdds/pdd17_pmc.pod
==============================================================================
--- trunk/docs/pdds/pdd17_pmc.pod	Thu Nov  5 22:08:52 2009	(r42276)
+++ trunk/docs/pdds/pdd17_pmc.pod	Thu Nov  5 22:12:26 2009	(r42277)
@@ -445,14 +445,6 @@
 hash. This opcode is most often used with high-level classes, but
 low-level PMCs may instantiate an object of their own type.
 
-=item instantiate_str
-
-  PMC* instantiate_str(INTERP, PMC *self, STRING *rep, INTVAL flags)
-
-Construct a PMC initializing it from a string representation and integer
-flags. [NOTE: this has been replaced by C<instantiate>. Any
-initialization arguments can be passed in the I<init> hash.]
-
 =item inspect
 
   PMC* inspect(INTERP, PMC *self)

Modified: trunk/docs/pdds/pdd28_strings.pod
==============================================================================
--- trunk/docs/pdds/pdd28_strings.pod	Thu Nov  5 22:08:52 2009	(r42276)
+++ trunk/docs/pdds/pdd28_strings.pod	Thu Nov  5 22:12:26 2009	(r42277)
@@ -649,10 +649,6 @@
 
 Initialize a new String PMC.
 
-=item instantiate_str
-
-Create a new String PMC from a Parrot string argument.
-
 =item clone
 
 Clone a String PMC.

Modified: trunk/tools/dev/vtablize.pl
==============================================================================
--- trunk/tools/dev/vtablize.pl	Thu Nov  5 22:08:52 2009	(r42276)
+++ trunk/tools/dev/vtablize.pl	Thu Nov  5 22:12:26 2009	(r42277)
@@ -31,7 +31,6 @@
 s/^(\s*)(void\s+init\(\)\s+{)/$1VTABLE $2/;
 s/^(\s*)(void\s+init_pmc\(PMC\s+\*\w*\)\s+{)/$1VTABLE $2/;
 s/^(\s*)(PMC\s+\*instantiate\(PMC\s+\*\w*\)\s+{)/$1VTABLE $2/;
-s/^(\s*)(PMC\s+\*instantiate_str\(STRING\s+\*\w*,\s+INTVAL\s+\w*\)\s+{)/$1VTABLE $2/;
 s/^(\s*)(void\s+morph\(INTVAL\s+\w*\)\s+{)/$1VTABLE $2/;
 s/^(\s*)(void\s+mark\(\)\s+{)/$1VTABLE $2/;
 s/^(\s*)(void\s+destroy\(\)\s+{)/$1VTABLE $2/;


More information about the parrot-commits mailing list