[svn:parrot] r41562 - branches/pct-rx/compilers/pct/src/Regex

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Tue Sep 29 21:20:25 UTC 2009


Author: pmichaud
Date: Tue Sep 29 21:20:24 2009
New Revision: 41562
URL: https://trac.parrot.org/parrot/changeset/41562

Log:
[pct-rx]:  Oops, naming fossil!  s/RX/Regex/g

Modified:
   branches/pct-rx/compilers/pct/src/Regex/Cursor.pir

Modified: branches/pct-rx/compilers/pct/src/Regex/Cursor.pir
==============================================================================
--- branches/pct-rx/compilers/pct/src/Regex/Cursor.pir	Tue Sep 29 20:58:49 2009	(r41561)
+++ branches/pct-rx/compilers/pct/src/Regex/Cursor.pir	Tue Sep 29 21:20:24 2009	(r41562)
@@ -3,23 +3,23 @@
 
 =head1 NAME
 
-RX::Cursor - RX Cursor nodes
+Regex::Cursor - Regex Cursor nodes
 
 =head1 DESCRIPTION
 
-This file implements the RX::Cursor class, used for managing regular
-expression control flow.  RX::Cursor is also a base class for
+This file implements the Regex::Cursor class, used for managing regular
+expression control flow.  Regex::Cursor is also a base class for
 grammars.
 
 =cut
 
-.namespace ['RX';'Cursor']
+.namespace ['Regex';'Cursor']
 
 .sub '' :anon :load :init
     load_bytecode 'P6object.pbc'
     .local pmc p6meta
     p6meta = new 'P6metaclass'
-    $P0 = p6meta.'new_class'('RX::Cursor', 'attr'=>'$!target $!from $!pos @!pstack')
+    $P0 = p6meta.'new_class'('Regex::Cursor', 'attr'=>'$!target $!from $!pos @!pstack')
     .return ()
 .end
 


More information about the parrot-commits mailing list