[svn:parrot] r47004 - trunk/src

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Wed May 26 01:42:29 UTC 2010


Author: whiteknight
Date: Wed May 26 01:42:28 2010
New Revision: 47004
URL: https://trac.parrot.org/parrot/changeset/47004

Log:
[oo] some small improvments to func docs, for clarity. Much much more is needed

Modified:
   trunk/src/oo.c

Modified: trunk/src/oo.c
==============================================================================
--- trunk/src/oo.c	Wed May 26 01:35:32 2010	(r47003)
+++ trunk/src/oo.c	Wed May 26 01:42:28 2010	(r47004)
@@ -354,7 +354,8 @@
 
 =item C<PMC * Parrot_oo_get_class_str(PARROT_INTERP, STRING *name)>
 
-Lookup a class object from a builtin string.
+Lookup a class object from the string C<name>. If the metaobject is found,
+return it. Otherwise, create a new PMCProxy for the type ID number.
 
 =cut
 
@@ -392,7 +393,7 @@
 
 =item C<PMC * Parrot_oo_newclass_from_str(PARROT_INTERP, STRING *name)>
 
-Create a new class object from a string name.
+Create a new Class PMC for a new type of the given C<name>.
 
 =cut
 
@@ -423,7 +424,8 @@
 =item C<PMC * Parrot_oo_find_vtable_override_for_class(PARROT_INTERP, PMC
 *classobj, STRING *name)>
 
-Lookup a vtable override in a specific class object.
+Find the vtable override with the specified C<name> in the given C<classobj>
+metaobject.
 
 =cut
 


More information about the parrot-commits mailing list