[svn:parrot] r44792 - trunk/src/ops

cotto at svn.parrot.org cotto at svn.parrot.org
Tue Mar 9 06:48:48 UTC 2010


Author: cotto
Date: Tue Mar  9 06:48:47 2010
New Revision: 44792
URL: https://trac.parrot.org/parrot/changeset/44792

Log:
[ops] Fix pod for find_sub_not_null.  I don't know why this was working before.

Modified:
   trunk/src/ops/var.ops

Modified: trunk/src/ops/var.ops
==============================================================================
--- trunk/src/ops/var.ops	Tue Mar  9 06:42:00 2010	(r44791)
+++ trunk/src/ops/var.ops	Tue Mar  9 06:48:47 2010	(r44792)
@@ -472,6 +472,11 @@
 
 =item B<find_sub_not_null>(out PMC, in STR)
 
+Do the same thing as C<find_name>, but throw an exception if the name isn't
+found.    
+
+=cut
+
 inline op find_sub_not_null(out PMC, in STR) :base_core {
     opcode_t *dest = expr NEXT();
     PMC *sub = Parrot_find_name_op(interp, $2, dest);


More information about the parrot-commits mailing list