[svn:parrot] r47209 - in branches/gc_massacre: . compilers/imcc compilers/pct/src/PCT config/gen/makefiles ext/nqp-rx/src/stage0 runtime/parrot/library runtime/parrot/library/Test runtime/parrot/library/Test/Builder src/ops t/compilers/imcc/syn t/pmc tools/dev

bacek at svn.parrot.org bacek at svn.parrot.org
Mon May 31 10:40:45 UTC 2010


Author: bacek
Date: Mon May 31 10:40:44 2010
New Revision: 47209
URL: https://trac.parrot.org/parrot/changeset/47209

Log:
Merge branch 'master' into gc_massacre

Modified:
   branches/gc_massacre/DEPRECATED.pod
   branches/gc_massacre/compilers/imcc/parser_util.c
   branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir
   branches/gc_massacre/config/gen/makefiles/root.in
   branches/gc_massacre/ext/nqp-rx/src/stage0/HLL-s0.pir
   branches/gc_massacre/ext/nqp-rx/src/stage0/NQP-s0.pir
   branches/gc_massacre/ext/nqp-rx/src/stage0/P6Regex-s0.pir
   branches/gc_massacre/ext/nqp-rx/src/stage0/Regex-s0.pir
   branches/gc_massacre/runtime/parrot/library/Test/Builder/Output.pir
   branches/gc_massacre/runtime/parrot/library/Test/More.pir
   branches/gc_massacre/runtime/parrot/library/distutils.pir
   branches/gc_massacre/src/ops/core_ops.c
   branches/gc_massacre/src/ops/var.ops
   branches/gc_massacre/t/compilers/imcc/syn/clash.t
   branches/gc_massacre/t/pmc/complex.t
   branches/gc_massacre/t/pmc/resizablepmcarray.t
   branches/gc_massacre/t/pmc/sub.t
   branches/gc_massacre/tools/dev/fetch_languages.pl

Modified: branches/gc_massacre/DEPRECATED.pod
==============================================================================
--- branches/gc_massacre/DEPRECATED.pod	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/DEPRECATED.pod	Mon May 31 10:40:44 2010	(r47209)
@@ -134,18 +134,18 @@
 
 L<https://trac.parrot.org/parrot/ticket/1628>
 
-=back
+=item logical_* vtables [eligiblie in 2.7]
 
-=head1 Opcodes
+These can be replaced by C<get_bool> and intval ops unless you're using them for
+things that aren't really logical ops (don't do that!).
 
-=over 4
+L<https://trac.parrot.org/parrot/ticket/1655>
 
-=item moved to dynop [eligible in 1.1]
+=back
 
-Parts or all of: bit.ops, debug.ops, io.ops, math.ops, set.ops
-(the obscure and rarely used parts), sys.ops.
+=head1 Opcodes
 
-L<https://trac.parrot.org/parrot/ticket/449>
+=over 4
 
 =item get_addr and set_addr [eligible in 1.5]
 
@@ -239,6 +239,12 @@
 
 L<https://trac.parrot.org/parrot/ticket/1635>
 
+=item logical PMC ops [eligible in 2.7]
+
+These fall out from the logical vtables deprecation.
+
+L<https://trac.parrot.org/parrot/ticket/1655>
+
 =back
 
 =head1 Bytecode

Modified: branches/gc_massacre/compilers/imcc/parser_util.c
==============================================================================
--- branches/gc_massacre/compilers/imcc/parser_util.c	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/compilers/imcc/parser_util.c	Mon May 31 10:40:44 2010	(r47209)
@@ -47,7 +47,7 @@
 /* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
 
 PARROT_WARN_UNUSED_RESULT
-static int change_op(PARROT_INTERP,
+static int change_op_arg_to_num(PARROT_INTERP,
     ARGMOD(IMC_Unit *unit),
     ARGMOD(SymReg **r),
     int num,
@@ -94,7 +94,7 @@
         FUNC_MODIFIES(*unit)
         FUNC_MODIFIES(*r);
 
-#define ASSERT_ARGS_change_op __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
+#define ASSERT_ARGS_change_op_arg_to_num __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(unit) \
     , PARROT_ASSERT_ARG(r))
@@ -948,8 +948,11 @@
 
 /*
 
-=item C<static int change_op(PARROT_INTERP, IMC_Unit *unit, SymReg **r, int num,
-int emit)>
+=item C<static int change_op_arg_to_num(PARROT_INTERP, IMC_Unit *unit, SymReg
+**r, int num, int emit)>
+
+Change one argument of an op to be numeric in stead of integral. Used when
+integer argument op variants don't exist.
 
 =cut
 
@@ -957,9 +960,9 @@
 
 PARROT_WARN_UNUSED_RESULT
 static int
-change_op(PARROT_INTERP, ARGMOD(IMC_Unit *unit), ARGMOD(SymReg **r), int num, int emit)
+change_op_arg_to_num(PARROT_INTERP, ARGMOD(IMC_Unit *unit), ARGMOD(SymReg **r), int num, int emit)
 {
-    ASSERT_ARGS(change_op)
+    ASSERT_ARGS(change_op_arg_to_num)
     int changed = 0;
 
     if (r[num]->type & (VTCONST|VT_CONSTP)) {
@@ -1021,44 +1024,11 @@
     ASSERT_ARGS(try_find_op)
     char fullname[64];
     int changed = 0;
-    /*
-     * eq_str, eq_num => eq
-     * ...
-     */
-    if (n == 3 && r[2]->type == VTADDRESS) {
-        if (STREQ(name, "eq_str") || STREQ(name, "eq_num")) {
-            name    = "eq";
-            changed = 1;
-        }
-        else if (STREQ(name, "ne_str") || STREQ(name, "ne_num")) {
-            name    = "ne";
-            changed = 1;
-        }
-        else if (STREQ(name, "le_str") || STREQ(name, "le_num")) {
-            name    = "le";
-            changed = 1;
-        }
-        else if (STREQ(name, "lt_str") || STREQ(name, "lt_num")) {
-            name    = "lt";
-            changed = 1;
-        }
-        else if (STREQ(name, "ge_str") || STREQ(name, "ge_num")) {
-            name    = "ge";
-            changed = 1;
-        }
-        else if (STREQ(name, "gt_str") || STREQ(name, "gt_num")) {
-            name    = "gt";
-            changed = 1;
-        }
-    }
-    else if (n == 3 && (STREQ(name, "cmp_str") || STREQ(name, "cmp_num"))) {
-        name     = "cmp";
-        changed = 1;
-    }
+
     if (n == 3 && r[0]->set == 'N') {
         if (r[1]->set == 'I') {
             const SymReg * const r1 = r[1];
-            changed |= change_op(interp, unit, r, 1, emit);
+            changed |= change_op_arg_to_num(interp, unit, r, 1, emit);
 
             /* op Nx, Iy, Iy: reuse generated temp Nz */
             if (r[2]->set == 'I' && r[2]->type != VTADDRESS && r[2] == r1)
@@ -1066,20 +1036,20 @@
         }
 
         if (r[2]->set == 'I' && r[2]->type != VTADDRESS)
-            changed |= change_op(interp, unit, r, 2, emit);
+            changed |= change_op_arg_to_num(interp, unit, r, 2, emit);
     }
 
     /* handle eq_i_n_ic */
     else if (n == 3 && r[1]->set == 'N' && r[0]->set == 'I' &&
             r[2]->type == VTADDRESS) {
-        changed |= change_op(interp, unit, r, 0, emit);
+        changed |= change_op_arg_to_num(interp, unit, r, 0, emit);
     }
     else if (n == 2 && r[0]->set == 'N' && r[1]->set == 'I') {
         /*
          * transcendentals  e.g. acos N, I
          */
         if (!STREQ(name, "fact"))
-            changed = change_op(interp, unit, r, 1, emit);
+            changed = change_op_arg_to_num(interp, unit, r, 1, emit);
     }
 
     if (changed) {

Modified: branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir
==============================================================================
--- branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -918,7 +918,9 @@
     .get_results ($P0)
     pop_eh
     $S0 = self.'backtrace'($P0)
-    print $S0
+    $P0 = getinterp
+    $P0 = $P0.'stdhandle'(2)
+    print $P0, $S0
     exit 1
 .end
 

Modified: branches/gc_massacre/config/gen/makefiles/root.in
==============================================================================
--- branches/gc_massacre/config/gen/makefiles/root.in	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/config/gen/makefiles/root.in	Mon May 31 10:40:44 2010	(r47209)
@@ -626,8 +626,7 @@
     $(PARROT) \
     runtime/parrot/include/parrotlib.pbc \
     runtime/parrot/include/config.fpmc \
-    $(LIBRARY_DIR)/Test/More.pbc \
-    $(DYNPMC_TARGETS)
+    $(LIBRARY_DIR)/Test/More.pbc
 
 $(GEN_LIBRARY) : $(PARROT) $(GEN_PASM_INCLUDES)
 
@@ -645,7 +644,7 @@
 
 $(LIBRARY_DIR)/LWP/Protocol.pbc: $(DYNEXT_DIR)/io_ops$(LOAD_EXT) $(DYNEXT_DIR)/sys_ops$(LOAD_EXT)
 
-$(LIBRARY_DIR)/Test/More.pbc: $(DYNEXT_DIR)/io_ops$(LOAD_EXT)
+$(LIBRARY_DIR)/Test/More.pbc:
 
 $(LIBRARY_DIR)/Archive/Tar.pbc: $(DYNEXT_DIR)/io_ops$(LOAD_EXT)
 

Modified: branches/gc_massacre/ext/nqp-rx/src/stage0/HLL-s0.pir
==============================================================================
--- branches/gc_massacre/ext/nqp-rx/src/stage0/HLL-s0.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/ext/nqp-rx/src/stage0/HLL-s0.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -902,7 +902,7 @@
 ### .include 'gen/hllgrammar-grammar.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117579.6042")
+.sub "_block11"  :anon :subid("10_1275160375.18399")
 .annotate 'line', 0
     get_hll_global $P14, ["HLL";"Grammar"], "_block13" 
     capture_lex $P14
@@ -919,15 +919,15 @@
     $P343 = $P14()
 .annotate 'line', 1
     .return ($P343)
-    .const 'Sub' $P345 = "104_1275117579.6042" 
+    .const 'Sub' $P345 = "104_1275160375.18399" 
     .return ($P345)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post105") :outer("10_1275117579.6042")
+.sub "" :load :init :subid("post105") :outer("10_1275160375.18399")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117579.6042" 
+    .const 'Sub' $P12 = "10_1275160375.18399" 
     .local pmc block
     set block, $P12
     $P348 = get_root_global ["parrot"], "P6metaclass"
@@ -936,81 +936,81 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block13"  :subid("11_1275117579.6042") :outer("10_1275117579.6042")
+.sub "_block13"  :subid("11_1275160375.18399") :outer("10_1275160375.18399")
 .annotate 'line', 5
-    .const 'Sub' $P329 = "101_1275117579.6042" 
+    .const 'Sub' $P329 = "101_1275160375.18399" 
     capture_lex $P329
-    .const 'Sub' $P322 = "99_1275117579.6042" 
+    .const 'Sub' $P322 = "99_1275160375.18399" 
     capture_lex $P322
-    .const 'Sub' $P309 = "96_1275117579.6042" 
+    .const 'Sub' $P309 = "96_1275160375.18399" 
     capture_lex $P309
-    .const 'Sub' $P277 = "91_1275117579.6042" 
+    .const 'Sub' $P277 = "91_1275160375.18399" 
     capture_lex $P277
-    .const 'Sub' $P271 = "89_1275117579.6042" 
+    .const 'Sub' $P271 = "89_1275160375.18399" 
     capture_lex $P271
-    .const 'Sub' $P266 = "87_1275117579.6042" 
+    .const 'Sub' $P266 = "87_1275160375.18399" 
     capture_lex $P266
-    .const 'Sub' $P260 = "85_1275117579.6042" 
+    .const 'Sub' $P260 = "85_1275160375.18399" 
     capture_lex $P260
-    .const 'Sub' $P254 = "83_1275117579.6042" 
+    .const 'Sub' $P254 = "83_1275160375.18399" 
     capture_lex $P254
-    .const 'Sub' $P249 = "81_1275117579.6042" 
+    .const 'Sub' $P249 = "81_1275160375.18399" 
     capture_lex $P249
-    .const 'Sub' $P244 = "79_1275117579.6042" 
+    .const 'Sub' $P244 = "79_1275160375.18399" 
     capture_lex $P244
-    .const 'Sub' $P239 = "77_1275117579.6042" 
+    .const 'Sub' $P239 = "77_1275160375.18399" 
     capture_lex $P239
-    .const 'Sub' $P234 = "75_1275117579.6042" 
+    .const 'Sub' $P234 = "75_1275160375.18399" 
     capture_lex $P234
-    .const 'Sub' $P229 = "73_1275117579.6042" 
+    .const 'Sub' $P229 = "73_1275160375.18399" 
     capture_lex $P229
-    .const 'Sub' $P224 = "71_1275117579.6042" 
+    .const 'Sub' $P224 = "71_1275160375.18399" 
     capture_lex $P224
-    .const 'Sub' $P219 = "69_1275117579.6042" 
+    .const 'Sub' $P219 = "69_1275160375.18399" 
     capture_lex $P219
-    .const 'Sub' $P208 = "65_1275117579.6042" 
+    .const 'Sub' $P208 = "65_1275160375.18399" 
     capture_lex $P208
-    .const 'Sub' $P195 = "63_1275117579.6042" 
+    .const 'Sub' $P195 = "63_1275160375.18399" 
     capture_lex $P195
-    .const 'Sub' $P183 = "61_1275117579.6042" 
+    .const 'Sub' $P183 = "61_1275160375.18399" 
     capture_lex $P183
-    .const 'Sub' $P176 = "59_1275117579.6042" 
+    .const 'Sub' $P176 = "59_1275160375.18399" 
     capture_lex $P176
-    .const 'Sub' $P167 = "57_1275117579.6042" 
+    .const 'Sub' $P167 = "57_1275160375.18399" 
     capture_lex $P167
-    .const 'Sub' $P160 = "55_1275117579.6042" 
+    .const 'Sub' $P160 = "55_1275160375.18399" 
     capture_lex $P160
-    .const 'Sub' $P151 = "53_1275117579.6042" 
+    .const 'Sub' $P151 = "53_1275160375.18399" 
     capture_lex $P151
-    .const 'Sub' $P144 = "51_1275117579.6042" 
+    .const 'Sub' $P144 = "51_1275160375.18399" 
     capture_lex $P144
-    .const 'Sub' $P135 = "49_1275117579.6042" 
+    .const 'Sub' $P135 = "49_1275160375.18399" 
     capture_lex $P135
-    .const 'Sub' $P128 = "47_1275117579.6042" 
+    .const 'Sub' $P128 = "47_1275160375.18399" 
     capture_lex $P128
-    .const 'Sub' $P121 = "45_1275117579.6042" 
+    .const 'Sub' $P121 = "45_1275160375.18399" 
     capture_lex $P121
-    .const 'Sub' $P111 = "43_1275117579.6042" 
+    .const 'Sub' $P111 = "43_1275160375.18399" 
     capture_lex $P111
-    .const 'Sub' $P103 = "41_1275117579.6042" 
+    .const 'Sub' $P103 = "41_1275160375.18399" 
     capture_lex $P103
-    .const 'Sub' $P93 = "40_1275117579.6042" 
+    .const 'Sub' $P93 = "40_1275160375.18399" 
     capture_lex $P93
-    .const 'Sub' $P87 = "38_1275117579.6042" 
+    .const 'Sub' $P87 = "38_1275160375.18399" 
     capture_lex $P87
-    .const 'Sub' $P82 = "36_1275117579.6042" 
+    .const 'Sub' $P82 = "36_1275160375.18399" 
     capture_lex $P82
-    .const 'Sub' $P74 = "34_1275117579.6042" 
+    .const 'Sub' $P74 = "34_1275160375.18399" 
     capture_lex $P74
-    .const 'Sub' $P68 = "32_1275117579.6042" 
+    .const 'Sub' $P68 = "32_1275160375.18399" 
     capture_lex $P68
-    .const 'Sub' $P62 = "30_1275117579.6042" 
+    .const 'Sub' $P62 = "30_1275160375.18399" 
     capture_lex $P62
-    .const 'Sub' $P56 = "28_1275117579.6042" 
+    .const 'Sub' $P56 = "28_1275160375.18399" 
     capture_lex $P56
-    .const 'Sub' $P23 = "14_1275117579.6042" 
+    .const 'Sub' $P23 = "14_1275160375.18399" 
     capture_lex $P23
-    .const 'Sub' $P15 = "12_1275117579.6042" 
+    .const 'Sub' $P15 = "12_1275160375.18399" 
     capture_lex $P15
     $P0 = find_dynamic_lex "$*CTXSAVE"
     if null $P0 goto ctxsave_done
@@ -1019,17 +1019,17 @@
     $P0."ctxsave"()
   ctxsave_done:
 .annotate 'line', 33
-    .const 'Sub' $P329 = "101_1275117579.6042" 
+    .const 'Sub' $P329 = "101_1275160375.18399" 
     capture_lex $P329
 .annotate 'line', 5
     .return ($P329)
-    .const 'Sub' $P340 = "103_1275117579.6042" 
+    .const 'Sub' $P340 = "103_1275160375.18399" 
     .return ($P340)
 .end
 
 
 .namespace ["HLL";"Grammar"]
-.sub "ws"  :subid("12_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "ws"  :subid("12_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx16_tgt
     .local int rx16_pos
@@ -1113,7 +1113,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__ws"  :subid("13_1275117579.6042") :method
+.sub "!PREFIX__ws"  :subid("13_1275160375.18399") :method
 .annotate 'line', 5
     new $P18, "ResizablePMCArray"
     push $P18, ""
@@ -1122,7 +1122,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "termish"  :subid("14_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "termish"  :subid("14_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx24_tgt
     .local int rx24_pos
@@ -1214,7 +1214,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__termish"  :subid("15_1275117579.6042") :method
+.sub "!PREFIX__termish"  :subid("15_1275160375.18399") :method
 .annotate 'line', 5
     new $P26, "ResizablePMCArray"
     push $P26, ""
@@ -1223,7 +1223,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "term"  :subid("16_1275117579.6042") :method
+.sub "term"  :subid("16_1275160375.18399") :method
 .annotate 'line', 13
     $P33 = self."!protoregex"("term")
     .return ($P33)
@@ -1231,7 +1231,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__term"  :subid("17_1275117579.6042") :method
+.sub "!PREFIX__term"  :subid("17_1275160375.18399") :method
 .annotate 'line', 13
     $P35 = self."!PREFIX__!protoregex"("term")
     .return ($P35)
@@ -1239,7 +1239,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "infix"  :subid("18_1275117579.6042") :method
+.sub "infix"  :subid("18_1275160375.18399") :method
 .annotate 'line', 14
     $P37 = self."!protoregex"("infix")
     .return ($P37)
@@ -1247,7 +1247,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__infix"  :subid("19_1275117579.6042") :method
+.sub "!PREFIX__infix"  :subid("19_1275160375.18399") :method
 .annotate 'line', 14
     $P39 = self."!PREFIX__!protoregex"("infix")
     .return ($P39)
@@ -1255,7 +1255,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "prefix"  :subid("20_1275117579.6042") :method
+.sub "prefix"  :subid("20_1275160375.18399") :method
 .annotate 'line', 15
     $P41 = self."!protoregex"("prefix")
     .return ($P41)
@@ -1263,7 +1263,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__prefix"  :subid("21_1275117579.6042") :method
+.sub "!PREFIX__prefix"  :subid("21_1275160375.18399") :method
 .annotate 'line', 15
     $P43 = self."!PREFIX__!protoregex"("prefix")
     .return ($P43)
@@ -1271,7 +1271,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "postfix"  :subid("22_1275117579.6042") :method
+.sub "postfix"  :subid("22_1275160375.18399") :method
 .annotate 'line', 16
     $P45 = self."!protoregex"("postfix")
     .return ($P45)
@@ -1279,7 +1279,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__postfix"  :subid("23_1275117579.6042") :method
+.sub "!PREFIX__postfix"  :subid("23_1275160375.18399") :method
 .annotate 'line', 16
     $P47 = self."!PREFIX__!protoregex"("postfix")
     .return ($P47)
@@ -1287,7 +1287,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "circumfix"  :subid("24_1275117579.6042") :method
+.sub "circumfix"  :subid("24_1275160375.18399") :method
 .annotate 'line', 17
     $P49 = self."!protoregex"("circumfix")
     .return ($P49)
@@ -1295,7 +1295,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__circumfix"  :subid("25_1275117579.6042") :method
+.sub "!PREFIX__circumfix"  :subid("25_1275160375.18399") :method
 .annotate 'line', 17
     $P51 = self."!PREFIX__!protoregex"("circumfix")
     .return ($P51)
@@ -1303,7 +1303,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "postcircumfix"  :subid("26_1275117579.6042") :method
+.sub "postcircumfix"  :subid("26_1275160375.18399") :method
 .annotate 'line', 18
     $P53 = self."!protoregex"("postcircumfix")
     .return ($P53)
@@ -1311,7 +1311,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__postcircumfix"  :subid("27_1275117579.6042") :method
+.sub "!PREFIX__postcircumfix"  :subid("27_1275160375.18399") :method
 .annotate 'line', 18
     $P55 = self."!PREFIX__!protoregex"("postcircumfix")
     .return ($P55)
@@ -1319,7 +1319,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "term:sym<circumfix>"  :subid("28_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "term:sym<circumfix>"  :subid("28_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx57_tgt
     .local int rx57_pos
@@ -1377,7 +1377,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__term:sym<circumfix>"  :subid("29_1275117579.6042") :method
+.sub "!PREFIX__term:sym<circumfix>"  :subid("29_1275160375.18399") :method
 .annotate 'line', 5
     $P59 = self."!PREFIX__!subrule"("circumfix", "")
     new $P60, "ResizablePMCArray"
@@ -1387,7 +1387,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "infixish"  :subid("30_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "infixish"  :subid("30_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx63_tgt
     .local int rx63_pos
@@ -1445,7 +1445,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__infixish"  :subid("31_1275117579.6042") :method
+.sub "!PREFIX__infixish"  :subid("31_1275160375.18399") :method
 .annotate 'line', 5
     $P65 = self."!PREFIX__!subrule"("OPER=infix", "")
     new $P66, "ResizablePMCArray"
@@ -1455,7 +1455,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "prefixish"  :subid("32_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "prefixish"  :subid("32_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx69_tgt
     .local int rx69_pos
@@ -1518,7 +1518,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__prefixish"  :subid("33_1275117579.6042") :method
+.sub "!PREFIX__prefixish"  :subid("33_1275160375.18399") :method
 .annotate 'line', 5
     $P71 = self."!PREFIX__!subrule"("OPER=prefix", "")
     new $P72, "ResizablePMCArray"
@@ -1528,7 +1528,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "postfixish"  :subid("34_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "postfixish"  :subid("34_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx75_tgt
     .local int rx75_pos
@@ -1602,7 +1602,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__postfixish"  :subid("35_1275117579.6042") :method
+.sub "!PREFIX__postfixish"  :subid("35_1275160375.18399") :method
 .annotate 'line', 5
     $P77 = self."!PREFIX__!subrule"("OPER=postcircumfix", "")
     $P78 = self."!PREFIX__!subrule"("OPER=postfix", "")
@@ -1614,7 +1614,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "nullterm"  :subid("36_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "nullterm"  :subid("36_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx83_tgt
     .local int rx83_pos
@@ -1665,7 +1665,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__nullterm"  :subid("37_1275117579.6042") :method
+.sub "!PREFIX__nullterm"  :subid("37_1275160375.18399") :method
 .annotate 'line', 5
     new $P85, "ResizablePMCArray"
     push $P85, ""
@@ -1674,7 +1674,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "nullterm_alt"  :subid("38_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "nullterm_alt"  :subid("38_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 5
     .local string rx88_tgt
     .local int rx88_pos
@@ -1732,7 +1732,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__nullterm_alt"  :subid("39_1275117579.6042") :method
+.sub "!PREFIX__nullterm_alt"  :subid("39_1275160375.18399") :method
 .annotate 'line', 5
     $P90 = self."!PREFIX__!subrule"("term", "")
     new $P91, "ResizablePMCArray"
@@ -1742,7 +1742,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "nulltermish"  :subid("40_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "nulltermish"  :subid("40_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     new $P95, 'ExceptionHandler'
     set_addr $P95, control_94
@@ -1769,7 +1769,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_delimited"  :subid("41_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_delimited"  :subid("41_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx104_tgt
     .local int rx104_pos
@@ -1851,7 +1851,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_delimited"  :subid("42_1275117579.6042") :method
+.sub "!PREFIX__quote_delimited"  :subid("42_1275160375.18399") :method
 .annotate 'line', 33
     $P106 = self."!PREFIX__!subrule"("starter", "")
     new $P107, "ResizablePMCArray"
@@ -1861,7 +1861,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_atom"  :subid("43_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_atom"  :subid("43_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx112_tgt
     .local int rx112_pos
@@ -1952,7 +1952,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_atom"  :subid("44_1275117579.6042") :method
+.sub "!PREFIX__quote_atom"  :subid("44_1275160375.18399") :method
 .annotate 'line', 33
     new $P114, "ResizablePMCArray"
     push $P114, ""
@@ -1961,7 +1961,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "decint"  :subid("45_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "decint"  :subid("45_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx122_tgt
     .local int rx122_pos
@@ -2033,7 +2033,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__decint"  :subid("46_1275117579.6042") :method
+.sub "!PREFIX__decint"  :subid("46_1275160375.18399") :method
 .annotate 'line', 33
     new $P124, "ResizablePMCArray"
     push $P124, ""
@@ -2042,7 +2042,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "decints"  :subid("47_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "decints"  :subid("47_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx129_tgt
     .local int rx129_pos
@@ -2126,7 +2126,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__decints"  :subid("48_1275117579.6042") :method
+.sub "!PREFIX__decints"  :subid("48_1275160375.18399") :method
 .annotate 'line', 33
     new $P131, "ResizablePMCArray"
     push $P131, ""
@@ -2135,7 +2135,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "hexint"  :subid("49_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "hexint"  :subid("49_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx136_tgt
     .local int rx136_pos
@@ -2216,7 +2216,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__hexint"  :subid("50_1275117579.6042") :method
+.sub "!PREFIX__hexint"  :subid("50_1275160375.18399") :method
 .annotate 'line', 33
     new $P138, "ResizablePMCArray"
     push $P138, ""
@@ -2225,7 +2225,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "hexints"  :subid("51_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "hexints"  :subid("51_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx145_tgt
     .local int rx145_pos
@@ -2309,7 +2309,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__hexints"  :subid("52_1275117579.6042") :method
+.sub "!PREFIX__hexints"  :subid("52_1275160375.18399") :method
 .annotate 'line', 33
     new $P147, "ResizablePMCArray"
     push $P147, ""
@@ -2318,7 +2318,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "octint"  :subid("53_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "octint"  :subid("53_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx152_tgt
     .local int rx152_pos
@@ -2399,7 +2399,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__octint"  :subid("54_1275117579.6042") :method
+.sub "!PREFIX__octint"  :subid("54_1275160375.18399") :method
 .annotate 'line', 33
     new $P154, "ResizablePMCArray"
     push $P154, ""
@@ -2408,7 +2408,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "octints"  :subid("55_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "octints"  :subid("55_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx161_tgt
     .local int rx161_pos
@@ -2492,7 +2492,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__octints"  :subid("56_1275117579.6042") :method
+.sub "!PREFIX__octints"  :subid("56_1275160375.18399") :method
 .annotate 'line', 33
     new $P163, "ResizablePMCArray"
     push $P163, ""
@@ -2501,7 +2501,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "binint"  :subid("57_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "binint"  :subid("57_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx168_tgt
     .local int rx168_pos
@@ -2582,7 +2582,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__binint"  :subid("58_1275117579.6042") :method
+.sub "!PREFIX__binint"  :subid("58_1275160375.18399") :method
 .annotate 'line', 33
     new $P170, "ResizablePMCArray"
     push $P170, ""
@@ -2591,7 +2591,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "binints"  :subid("59_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "binints"  :subid("59_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx177_tgt
     .local int rx177_pos
@@ -2675,7 +2675,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__binints"  :subid("60_1275117579.6042") :method
+.sub "!PREFIX__binints"  :subid("60_1275160375.18399") :method
 .annotate 'line', 33
     new $P179, "ResizablePMCArray"
     push $P179, ""
@@ -2684,7 +2684,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "integer"  :subid("61_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "integer"  :subid("61_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx184_tgt
     .local int rx184_pos
@@ -2832,7 +2832,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__integer"  :subid("62_1275117579.6042") :method
+.sub "!PREFIX__integer"  :subid("62_1275160375.18399") :method
 .annotate 'line', 33
     $P186 = self."!PREFIX__!subrule"("VALUE=decint", "")
     $P187 = self."!PREFIX__!subrule"("VALUE=decint", "0d")
@@ -2850,7 +2850,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "dec_number"  :subid("63_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "dec_number"  :subid("63_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx196_tgt
     .local int rx196_pos
@@ -3029,7 +3029,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__dec_number"  :subid("64_1275117579.6042") :method
+.sub "!PREFIX__dec_number"  :subid("64_1275160375.18399") :method
 .annotate 'line', 33
     new $P198, "ResizablePMCArray"
     push $P198, ""
@@ -3040,7 +3040,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "escale"  :subid("65_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "escale"  :subid("65_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx209_tgt
     .local int rx209_pos
@@ -3117,7 +3117,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__escale"  :subid("66_1275117579.6042") :method
+.sub "!PREFIX__escale"  :subid("66_1275160375.18399") :method
 .annotate 'line', 33
     new $P211, "ResizablePMCArray"
     push $P211, "e"
@@ -3127,7 +3127,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape"  :subid("67_1275117579.6042") :method
+.sub "quote_escape"  :subid("67_1275160375.18399") :method
 .annotate 'line', 79
     $P216 = self."!protoregex"("quote_escape")
     .return ($P216)
@@ -3135,7 +3135,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape"  :subid("68_1275117579.6042") :method
+.sub "!PREFIX__quote_escape"  :subid("68_1275160375.18399") :method
 .annotate 'line', 79
     $P218 = self."!PREFIX__!protoregex"("quote_escape")
     .return ($P218)
@@ -3143,7 +3143,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<backslash>"  :subid("69_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<backslash>"  :subid("69_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx220_tgt
     .local int rx220_pos
@@ -3205,7 +3205,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<backslash>"  :subid("70_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<backslash>"  :subid("70_1275160375.18399") :method
 .annotate 'line', 33
     new $P222, "ResizablePMCArray"
     push $P222, "\\\\"
@@ -3214,7 +3214,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<stopper>"  :subid("71_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<stopper>"  :subid("71_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx225_tgt
     .local int rx225_pos
@@ -3283,7 +3283,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<stopper>"  :subid("72_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<stopper>"  :subid("72_1275160375.18399") :method
 .annotate 'line', 33
     new $P227, "ResizablePMCArray"
     push $P227, "\\"
@@ -3292,7 +3292,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<bs>"  :subid("73_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<bs>"  :subid("73_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx230_tgt
     .local int rx230_pos
@@ -3354,7 +3354,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<bs>"  :subid("74_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<bs>"  :subid("74_1275160375.18399") :method
 .annotate 'line', 33
     new $P232, "ResizablePMCArray"
     push $P232, "\\b"
@@ -3363,7 +3363,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<nl>"  :subid("75_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<nl>"  :subid("75_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx235_tgt
     .local int rx235_pos
@@ -3425,7 +3425,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<nl>"  :subid("76_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<nl>"  :subid("76_1275160375.18399") :method
 .annotate 'line', 33
     new $P237, "ResizablePMCArray"
     push $P237, "\\n"
@@ -3434,7 +3434,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<cr>"  :subid("77_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<cr>"  :subid("77_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx240_tgt
     .local int rx240_pos
@@ -3496,7 +3496,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<cr>"  :subid("78_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<cr>"  :subid("78_1275160375.18399") :method
 .annotate 'line', 33
     new $P242, "ResizablePMCArray"
     push $P242, "\\r"
@@ -3505,7 +3505,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<tab>"  :subid("79_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<tab>"  :subid("79_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx245_tgt
     .local int rx245_pos
@@ -3567,7 +3567,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<tab>"  :subid("80_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<tab>"  :subid("80_1275160375.18399") :method
 .annotate 'line', 33
     new $P247, "ResizablePMCArray"
     push $P247, "\\t"
@@ -3576,7 +3576,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<ff>"  :subid("81_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<ff>"  :subid("81_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx250_tgt
     .local int rx250_pos
@@ -3638,7 +3638,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<ff>"  :subid("82_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<ff>"  :subid("82_1275160375.18399") :method
 .annotate 'line', 33
     new $P252, "ResizablePMCArray"
     push $P252, "\\f"
@@ -3647,7 +3647,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<hex>"  :subid("83_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<hex>"  :subid("83_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx255_tgt
     .local int rx255_pos
@@ -3745,7 +3745,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<hex>"  :subid("84_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<hex>"  :subid("84_1275160375.18399") :method
 .annotate 'line', 33
     new $P257, "ResizablePMCArray"
     push $P257, unicode:"\\x"
@@ -3754,7 +3754,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<oct>"  :subid("85_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<oct>"  :subid("85_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx261_tgt
     .local int rx261_pos
@@ -3852,7 +3852,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<oct>"  :subid("86_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<oct>"  :subid("86_1275160375.18399") :method
 .annotate 'line', 33
     new $P263, "ResizablePMCArray"
     push $P263, "\\o"
@@ -3861,7 +3861,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<chr>"  :subid("87_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<chr>"  :subid("87_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx267_tgt
     .local int rx267_pos
@@ -3930,7 +3930,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<chr>"  :subid("88_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<chr>"  :subid("88_1275160375.18399") :method
 .annotate 'line', 33
     new $P269, "ResizablePMCArray"
     push $P269, "\\c"
@@ -3939,7 +3939,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<0>"  :subid("89_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<0>"  :subid("89_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx272_tgt
     .local int rx272_pos
@@ -4022,7 +4022,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<0>"  :subid("90_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<0>"  :subid("90_1275160375.18399") :method
 .annotate 'line', 33
     new $P274, "ResizablePMCArray"
     push $P274, "\\0"
@@ -4031,13 +4031,13 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "quote_escape:sym<misc>"  :subid("91_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "quote_escape:sym<misc>"  :subid("91_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
-    .const 'Sub' $P297 = "95_1275117579.6042" 
+    .const 'Sub' $P297 = "95_1275160375.18399" 
     capture_lex $P297
-    .const 'Sub' $P290 = "94_1275117579.6042" 
+    .const 'Sub' $P290 = "94_1275160375.18399" 
     capture_lex $P290
-    .const 'Sub' $P285 = "93_1275117579.6042" 
+    .const 'Sub' $P285 = "93_1275160375.18399" 
     capture_lex $P285
     .local string rx278_tgt
     .local int rx278_pos
@@ -4073,7 +4073,7 @@
     find_lex $P282, unicode:"$\x{a2}"
     $P283 = $P282."MATCH"()
     store_lex "$/", $P283
-    .const 'Sub' $P285 = "93_1275117579.6042" 
+    .const 'Sub' $P285 = "93_1275160375.18399" 
     capture_lex $P285
     $P286 = $P285()
   # rx literal  "\\"
@@ -4099,7 +4099,7 @@
 .annotate 'line', 103
   # rx subrule $P290 subtype=capture negate=
     rx278_cur."!cursor_pos"(rx278_pos)
-    .const 'Sub' $P290 = "94_1275117579.6042" 
+    .const 'Sub' $P290 = "94_1275160375.18399" 
     capture_lex $P290
     $P10 = rx278_cur.$P290()
     unless $P10, rx278_fail
@@ -4133,7 +4133,7 @@
     find_lex $P294, unicode:"$\x{a2}"
     $P295 = $P294."MATCH"()
     store_lex "$/", $P295
-    .const 'Sub' $P297 = "95_1275117579.6042" 
+    .const 'Sub' $P297 = "95_1275160375.18399" 
     capture_lex $P297
     $P307 = $P297()
   alt288_end:
@@ -4179,7 +4179,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<misc>"  :subid("92_1275117579.6042") :method
+.sub "!PREFIX__quote_escape:sym<misc>"  :subid("92_1275160375.18399") :method
 .annotate 'line', 33
     new $P280, "ResizablePMCArray"
     push $P280, ""
@@ -4188,14 +4188,14 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block284"  :anon :subid("93_1275117579.6042") :outer("91_1275117579.6042")
+.sub "_block284"  :anon :subid("93_1275160375.18399") :outer("91_1275160375.18399")
 .annotate 'line', 99
     .return ()
 .end
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block289"  :anon :subid("94_1275117579.6042") :method :outer("91_1275117579.6042")
+.sub "_block289"  :anon :subid("94_1275160375.18399") :method :outer("91_1275160375.18399")
 .annotate 'line', 103
     .local string rx291_tgt
     .local int rx291_pos
@@ -4250,7 +4250,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block296"  :anon :subid("95_1275117579.6042") :outer("91_1275117579.6042")
+.sub "_block296"  :anon :subid("95_1275160375.18399") :outer("91_1275160375.18399")
 .annotate 'line', 104
     find_lex $P298, "$/"
     $P299 = $P298."CURSOR"()
@@ -4273,9 +4273,9 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "charname"  :subid("96_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "charname"  :subid("96_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
-    .const 'Sub' $P319 = "98_1275117579.6042" 
+    .const 'Sub' $P319 = "98_1275160375.18399" 
     capture_lex $P319
     .local string rx310_tgt
     .local int rx310_pos
@@ -4353,7 +4353,7 @@
 .annotate 'line', 113
   # rx subrule "before" subtype=zerowidth negate=
     rx310_cur."!cursor_pos"(rx310_pos)
-    .const 'Sub' $P319 = "98_1275117579.6042" 
+    .const 'Sub' $P319 = "98_1275160375.18399" 
     capture_lex $P319
     $P10 = rx310_cur."before"($P319)
     unless $P10, rx310_fail
@@ -4378,7 +4378,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__charname"  :subid("97_1275117579.6042") :method
+.sub "!PREFIX__charname"  :subid("97_1275160375.18399") :method
 .annotate 'line', 33
     $P312 = self."!PREFIX__!subrule"("integer", "")
     new $P313, "ResizablePMCArray"
@@ -4440,7 +4440,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block318"  :anon :subid("98_1275117579.6042") :method :outer("96_1275117579.6042")
+.sub "_block318"  :anon :subid("98_1275160375.18399") :method :outer("96_1275160375.18399")
 .annotate 'line', 113
     .local string rx320_tgt
     .local int rx320_pos
@@ -4500,7 +4500,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "charnames"  :subid("99_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "charnames"  :subid("99_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx323_tgt
     .local int rx323_pos
@@ -4584,7 +4584,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__charnames"  :subid("100_1275117579.6042") :method
+.sub "!PREFIX__charnames"  :subid("100_1275160375.18399") :method
 .annotate 'line', 33
     new $P325, "ResizablePMCArray"
     push $P325, ""
@@ -4593,7 +4593,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "charspec"  :subid("101_1275117579.6042") :method :outer("11_1275117579.6042")
+.sub "charspec"  :subid("101_1275160375.18399") :method :outer("11_1275160375.18399")
 .annotate 'line', 33
     .local string rx330_tgt
     .local int rx330_pos
@@ -4723,7 +4723,7 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "!PREFIX__charspec"  :subid("102_1275117579.6042") :method
+.sub "!PREFIX__charspec"  :subid("102_1275160375.18399") :method
 .annotate 'line', 33
     $P332 = self."!PREFIX__!subrule"("", "")
     $P333 = self."!PREFIX__!subrule"("charnames", "[")
@@ -4764,18 +4764,18 @@
 
 
 .namespace ["HLL";"Grammar"]
-.sub "_block339" :load :anon :subid("103_1275117579.6042")
+.sub "_block339" :load :anon :subid("103_1275160375.18399")
 .annotate 'line', 5
-    .const 'Sub' $P341 = "11_1275117579.6042" 
+    .const 'Sub' $P341 = "11_1275160375.18399" 
     $P342 = $P341()
     .return ($P342)
 .end
 
 
 .namespace []
-.sub "_block344" :load :anon :subid("104_1275117579.6042")
+.sub "_block344" :load :anon :subid("104_1275160375.18399")
 .annotate 'line', 1
-    .const 'Sub' $P346 = "10_1275117579.6042" 
+    .const 'Sub' $P346 = "10_1275160375.18399" 
     $P347 = $P346()
     .return ($P347)
 .end
@@ -4783,7 +4783,7 @@
 ### .include 'gen/hllgrammar-actions.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117587.37325")
+.sub "_block11"  :anon :subid("10_1275160380.31383")
 .annotate 'line', 0
     get_hll_global $P14, ["HLL";"Actions"], "_block13" 
     capture_lex $P14
@@ -4800,15 +4800,15 @@
     $P620 = $P14()
 .annotate 'line', 1
     .return ($P620)
-    .const 'Sub' $P622 = "54_1275117587.37325" 
+    .const 'Sub' $P622 = "54_1275160380.31383" 
     .return ($P622)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post55") :outer("10_1275117587.37325")
+.sub "" :load :init :subid("post55") :outer("10_1275160380.31383")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117587.37325" 
+    .const 'Sub' $P12 = "10_1275160380.31383" 
     .local pmc block
     set block, $P12
     $P625 = get_root_global ["parrot"], "P6metaclass"
@@ -4817,73 +4817,73 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block13"  :subid("11_1275117587.37325") :outer("10_1275117587.37325")
+.sub "_block13"  :subid("11_1275160380.31383") :outer("10_1275160380.31383")
 .annotate 'line', 3
-    .const 'Sub' $P598 = "52_1275117587.37325" 
+    .const 'Sub' $P598 = "52_1275160380.31383" 
     capture_lex $P598
-    .const 'Sub' $P573 = "50_1275117587.37325" 
+    .const 'Sub' $P573 = "50_1275160380.31383" 
     capture_lex $P573
-    .const 'Sub' $P543 = "49_1275117587.37325" 
+    .const 'Sub' $P543 = "49_1275160380.31383" 
     capture_lex $P543
-    .const 'Sub' $P524 = "48_1275117587.37325" 
+    .const 'Sub' $P524 = "48_1275160380.31383" 
     capture_lex $P524
-    .const 'Sub' $P517 = "47_1275117587.37325" 
+    .const 'Sub' $P517 = "47_1275160380.31383" 
     capture_lex $P517
-    .const 'Sub' $P507 = "46_1275117587.37325" 
+    .const 'Sub' $P507 = "46_1275160380.31383" 
     capture_lex $P507
-    .const 'Sub' $P490 = "45_1275117587.37325" 
+    .const 'Sub' $P490 = "45_1275160380.31383" 
     capture_lex $P490
-    .const 'Sub' $P473 = "44_1275117587.37325" 
+    .const 'Sub' $P473 = "44_1275160380.31383" 
     capture_lex $P473
-    .const 'Sub' $P466 = "43_1275117587.37325" 
+    .const 'Sub' $P466 = "43_1275160380.31383" 
     capture_lex $P466
-    .const 'Sub' $P459 = "42_1275117587.37325" 
+    .const 'Sub' $P459 = "42_1275160380.31383" 
     capture_lex $P459
-    .const 'Sub' $P452 = "41_1275117587.37325" 
+    .const 'Sub' $P452 = "41_1275160380.31383" 
     capture_lex $P452
-    .const 'Sub' $P445 = "40_1275117587.37325" 
+    .const 'Sub' $P445 = "40_1275160380.31383" 
     capture_lex $P445
-    .const 'Sub' $P438 = "39_1275117587.37325" 
+    .const 'Sub' $P438 = "39_1275160380.31383" 
     capture_lex $P438
-    .const 'Sub' $P428 = "38_1275117587.37325" 
+    .const 'Sub' $P428 = "38_1275160380.31383" 
     capture_lex $P428
-    .const 'Sub' $P421 = "37_1275117587.37325" 
+    .const 'Sub' $P421 = "37_1275160380.31383" 
     capture_lex $P421
-    .const 'Sub' $P405 = "36_1275117587.37325" 
+    .const 'Sub' $P405 = "36_1275160380.31383" 
     capture_lex $P405
-    .const 'Sub' $P330 = "34_1275117587.37325" 
+    .const 'Sub' $P330 = "34_1275160380.31383" 
     capture_lex $P330
-    .const 'Sub' $P267 = "31_1275117587.37325" 
+    .const 'Sub' $P267 = "31_1275160380.31383" 
     capture_lex $P267
-    .const 'Sub' $P258 = "30_1275117587.37325" 
+    .const 'Sub' $P258 = "30_1275160380.31383" 
     capture_lex $P258
-    .const 'Sub' $P249 = "29_1275117587.37325" 
+    .const 'Sub' $P249 = "29_1275160380.31383" 
     capture_lex $P249
-    .const 'Sub' $P240 = "28_1275117587.37325" 
+    .const 'Sub' $P240 = "28_1275160380.31383" 
     capture_lex $P240
-    .const 'Sub' $P231 = "27_1275117587.37325" 
+    .const 'Sub' $P231 = "27_1275160380.31383" 
     capture_lex $P231
-    .const 'Sub' $P222 = "26_1275117587.37325" 
+    .const 'Sub' $P222 = "26_1275160380.31383" 
     capture_lex $P222
-    .const 'Sub' $P212 = "25_1275117587.37325" 
+    .const 'Sub' $P212 = "25_1275160380.31383" 
     capture_lex $P212
-    .const 'Sub' $P202 = "24_1275117587.37325" 
+    .const 'Sub' $P202 = "24_1275160380.31383" 
     capture_lex $P202
-    .const 'Sub' $P194 = "23_1275117587.37325" 
+    .const 'Sub' $P194 = "23_1275160380.31383" 
     capture_lex $P194
-    .const 'Sub' $P184 = "22_1275117587.37325" 
+    .const 'Sub' $P184 = "22_1275160380.31383" 
     capture_lex $P184
-    .const 'Sub' $P174 = "21_1275117587.37325" 
+    .const 'Sub' $P174 = "21_1275160380.31383" 
     capture_lex $P174
-    .const 'Sub' $P73 = "18_1275117587.37325" 
+    .const 'Sub' $P73 = "18_1275160380.31383" 
     capture_lex $P73
-    .const 'Sub' $P35 = "15_1275117587.37325" 
+    .const 'Sub' $P35 = "15_1275160380.31383" 
     capture_lex $P35
-    .const 'Sub' $P28 = "14_1275117587.37325" 
+    .const 'Sub' $P28 = "14_1275160380.31383" 
     capture_lex $P28
-    .const 'Sub' $P22 = "13_1275117587.37325" 
+    .const 'Sub' $P22 = "13_1275160380.31383" 
     capture_lex $P22
-    .const 'Sub' $P15 = "12_1275117587.37325" 
+    .const 'Sub' $P15 = "12_1275160380.31383" 
     capture_lex $P15
     $P0 = find_dynamic_lex "$*CTXSAVE"
     if null $P0 goto ctxsave_done
@@ -4892,17 +4892,17 @@
     $P0."ctxsave"()
   ctxsave_done:
 .annotate 'line', 224
-    .const 'Sub' $P598 = "52_1275117587.37325" 
+    .const 'Sub' $P598 = "52_1275160380.31383" 
     newclosure $P615, $P598
 .annotate 'line', 3
     .return ($P615)
-    .const 'Sub' $P617 = "53_1275117587.37325" 
+    .const 'Sub' $P617 = "53_1275160380.31383" 
     .return ($P617)
 .end
 
 
 .namespace ["HLL";"Actions"]
-.sub "string_to_int"  :subid("12_1275117587.37325") :outer("11_1275117587.37325")
+.sub "string_to_int"  :subid("12_1275160380.31383") :outer("11_1275160380.31383")
     .param pmc param_18
     .param pmc param_19
 .annotate 'line', 3
@@ -4955,7 +4955,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "ints_to_string"  :subid("13_1275117587.37325") :outer("11_1275117587.37325")
+.sub "ints_to_string"  :subid("13_1275160380.31383") :outer("11_1275160380.31383")
     .param pmc param_25
 .annotate 'line', 37
     new $P24, 'ExceptionHandler'
@@ -4996,7 +4996,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "CTXSAVE"  :subid("14_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "CTXSAVE"  :subid("14_1275160380.31383") :method :outer("11_1275160380.31383")
 .annotate 'line', 62
     new $P30, 'ExceptionHandler'
     set_addr $P30, control_29
@@ -5025,10 +5025,10 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "SET_BLOCK_OUTER_CTX"  :subid("15_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "SET_BLOCK_OUTER_CTX"  :subid("15_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_38
 .annotate 'line', 76
-    .const 'Sub' $P48 = "16_1275117587.37325" 
+    .const 'Sub' $P48 = "16_1275160380.31383" 
     capture_lex $P48
     new $P37, 'ExceptionHandler'
     set_addr $P37, control_36
@@ -5063,7 +5063,7 @@
     set $P43, $I46
     goto if_44_end
   if_44:
-    .const 'Sub' $P48 = "16_1275117587.37325" 
+    .const 'Sub' $P48 = "16_1275160380.31383" 
     capture_lex $P48
     $P71 = $P48()
     set $P43, $P71
@@ -5079,9 +5079,9 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block47"  :anon :subid("16_1275117587.37325") :outer("15_1275117587.37325")
+.sub "_block47"  :anon :subid("16_1275160380.31383") :outer("15_1275160380.31383")
 .annotate 'line', 78
-    .const 'Sub' $P62 = "17_1275117587.37325" 
+    .const 'Sub' $P62 = "17_1275160380.31383" 
     capture_lex $P62
 .annotate 'line', 79
     $P49 = root_new ['parrot';'ResizablePMCArray']
@@ -5111,7 +5111,7 @@
     unless $P56, loop68_done
     shift $P60, $P56
   loop68_redo:
-    .const 'Sub' $P62 = "17_1275117587.37325" 
+    .const 'Sub' $P62 = "17_1275160380.31383" 
     capture_lex $P62
     $P62($P60)
   loop68_next:
@@ -5131,7 +5131,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block61"  :anon :subid("17_1275117587.37325") :outer("16_1275117587.37325")
+.sub "_block61"  :anon :subid("17_1275160380.31383") :outer("16_1275160380.31383")
     .param pmc param_63
 .annotate 'line', 82
     .lex "$_", param_63
@@ -5146,14 +5146,14 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "EXPR"  :subid("18_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "EXPR"  :subid("18_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_76
     .param pmc param_77 :optional
     .param int has_param_77 :opt_flag
 .annotate 'line', 89
-    .const 'Sub' $P156 = "20_1275117587.37325" 
+    .const 'Sub' $P156 = "20_1275160380.31383" 
     capture_lex $P156
-    .const 'Sub' $P123 = "19_1275117587.37325" 
+    .const 'Sub' $P123 = "19_1275160380.31383" 
     capture_lex $P123
     new $P75, 'ExceptionHandler'
     set_addr $P75, control_74
@@ -5288,7 +5288,7 @@
     find_lex $P120, "$past"
     $P121 = $P120."name"()
     if $P121, unless_119_end
-    .const 'Sub' $P123 = "19_1275117587.37325" 
+    .const 'Sub' $P123 = "19_1275160380.31383" 
     capture_lex $P123
     $P123()
   unless_119_end:
@@ -5312,7 +5312,7 @@
     unless $P150, loop167_done
     shift $P154, $P150
   loop167_redo:
-    .const 'Sub' $P156 = "20_1275117587.37325" 
+    .const 'Sub' $P156 = "20_1275160380.31383" 
     capture_lex $P156
     $P156($P154)
   loop167_next:
@@ -5357,7 +5357,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block122"  :anon :subid("19_1275117587.37325") :outer("18_1275117587.37325")
+.sub "_block122"  :anon :subid("19_1275160380.31383") :outer("18_1275160380.31383")
 .annotate 'line', 98
     new $P124, "Undef"
     .lex "$name", $P124
@@ -5407,7 +5407,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block155"  :anon :subid("20_1275117587.37325") :outer("18_1275117587.37325")
+.sub "_block155"  :anon :subid("20_1275160380.31383") :outer("18_1275160380.31383")
     .param pmc param_157
 .annotate 'line', 109
     .lex "$_", param_157
@@ -5430,7 +5430,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "term:sym<circumfix>"  :subid("21_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "term:sym<circumfix>"  :subid("21_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_177
 .annotate 'line', 114
     new $P176, 'ExceptionHandler'
@@ -5460,7 +5460,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "termish"  :subid("22_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "termish"  :subid("22_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_187
 .annotate 'line', 116
     new $P186, 'ExceptionHandler'
@@ -5490,7 +5490,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "nullterm"  :subid("23_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "nullterm"  :subid("23_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_197
 .annotate 'line', 117
     new $P196, 'ExceptionHandler'
@@ -5512,7 +5512,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "nullterm_alt"  :subid("24_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "nullterm_alt"  :subid("24_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_205
 .annotate 'line', 118
     new $P204, 'ExceptionHandler'
@@ -5542,7 +5542,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "integer"  :subid("25_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "integer"  :subid("25_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_215
 .annotate 'line', 120
     new $P214, 'ExceptionHandler'
@@ -5572,7 +5572,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "dec_number"  :subid("26_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "dec_number"  :subid("26_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_225
 .annotate 'line', 122
     new $P224, 'ExceptionHandler'
@@ -5595,7 +5595,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "decint"  :subid("27_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "decint"  :subid("27_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_234
 .annotate 'line', 124
     new $P233, 'ExceptionHandler'
@@ -5618,7 +5618,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "hexint"  :subid("28_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "hexint"  :subid("28_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_243
 .annotate 'line', 125
     new $P242, 'ExceptionHandler'
@@ -5641,7 +5641,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "octint"  :subid("29_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "octint"  :subid("29_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_252
 .annotate 'line', 126
     new $P251, 'ExceptionHandler'
@@ -5664,7 +5664,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "binint"  :subid("30_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "binint"  :subid("30_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_261
 .annotate 'line', 127
     new $P260, 'ExceptionHandler'
@@ -5687,10 +5687,10 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_EXPR"  :subid("31_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_EXPR"  :subid("31_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_270
 .annotate 'line', 129
-    .const 'Sub' $P286 = "32_1275117587.37325" 
+    .const 'Sub' $P286 = "32_1275160380.31383" 
     capture_lex $P286
     new $P269, 'ExceptionHandler'
     set_addr $P269, control_268
@@ -5722,7 +5722,7 @@
     $P282 = $P280."ACCEPTS"($P281)
     if $P282, if_279
 .annotate 'line', 135
-    .const 'Sub' $P286 = "32_1275117587.37325" 
+    .const 'Sub' $P286 = "32_1275160380.31383" 
     capture_lex $P286
     $P286()
     goto if_279_end
@@ -5761,9 +5761,9 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block285"  :anon :subid("32_1275117587.37325") :outer("31_1275117587.37325")
+.sub "_block285"  :anon :subid("32_1275160380.31383") :outer("31_1275160380.31383")
 .annotate 'line', 135
-    .const 'Sub' $P305 = "33_1275117587.37325" 
+    .const 'Sub' $P305 = "33_1275160380.31383" 
     capture_lex $P305
 .annotate 'line', 136
     $P287 = root_new ['parrot';'ResizablePMCArray']
@@ -5814,7 +5814,7 @@
     unless $P300, loop310_done
     shift $P303, $P300
   loop310_redo:
-    .const 'Sub' $P305 = "33_1275117587.37325" 
+    .const 'Sub' $P305 = "33_1275160380.31383" 
     capture_lex $P305
     $P305($P303)
   loop310_next:
@@ -5837,7 +5837,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block304"  :anon :subid("33_1275117587.37325") :outer("32_1275117587.37325")
+.sub "_block304"  :anon :subid("33_1275160380.31383") :outer("32_1275160380.31383")
     .param pmc param_306
 .annotate 'line', 139
     .lex "$_", param_306
@@ -5849,10 +5849,10 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_delimited"  :subid("34_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_delimited"  :subid("34_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_333
 .annotate 'line', 152
-    .const 'Sub' $P345 = "35_1275117587.37325" 
+    .const 'Sub' $P345 = "35_1275160380.31383" 
     capture_lex $P345
     new $P332, 'ExceptionHandler'
     set_addr $P332, control_331
@@ -5895,7 +5895,7 @@
     unless $P339, loop377_done
     shift $P343, $P339
   loop377_redo:
-    .const 'Sub' $P345 = "35_1275117587.37325" 
+    .const 'Sub' $P345 = "35_1275160380.31383" 
     capture_lex $P345
     $P345($P343)
   loop377_next:
@@ -5973,7 +5973,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block344"  :anon :subid("35_1275117587.37325") :outer("34_1275117587.37325")
+.sub "_block344"  :anon :subid("35_1275160380.31383") :outer("34_1275160380.31383")
     .param pmc param_347
 .annotate 'line', 156
     new $P346, "Undef"
@@ -6042,7 +6042,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_atom"  :subid("36_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_atom"  :subid("36_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_408
 .annotate 'line', 177
     new $P407, 'ExceptionHandler'
@@ -6091,7 +6091,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<backslash>"  :subid("37_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<backslash>"  :subid("37_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_424
 .annotate 'line', 181
     new $P423, 'ExceptionHandler'
@@ -6112,7 +6112,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<stopper>"  :subid("38_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<stopper>"  :subid("38_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_431
 .annotate 'line', 182
     new $P430, 'ExceptionHandler'
@@ -6142,7 +6142,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<bs>"  :subid("39_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<bs>"  :subid("39_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_441
 .annotate 'line', 184
     new $P440, 'ExceptionHandler'
@@ -6163,7 +6163,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<nl>"  :subid("40_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<nl>"  :subid("40_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_448
 .annotate 'line', 185
     new $P447, 'ExceptionHandler'
@@ -6184,7 +6184,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<cr>"  :subid("41_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<cr>"  :subid("41_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_455
 .annotate 'line', 186
     new $P454, 'ExceptionHandler'
@@ -6205,7 +6205,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<tab>"  :subid("42_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<tab>"  :subid("42_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_462
 .annotate 'line', 187
     new $P461, 'ExceptionHandler'
@@ -6226,7 +6226,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<ff>"  :subid("43_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<ff>"  :subid("43_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_469
 .annotate 'line', 188
     new $P468, 'ExceptionHandler'
@@ -6247,7 +6247,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<hex>"  :subid("44_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<hex>"  :subid("44_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_476
 .annotate 'line', 190
     new $P475, 'ExceptionHandler'
@@ -6305,7 +6305,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<oct>"  :subid("45_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<oct>"  :subid("45_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_493
 .annotate 'line', 194
     new $P492, 'ExceptionHandler'
@@ -6363,7 +6363,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<chr>"  :subid("46_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<chr>"  :subid("46_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_510
 .annotate 'line', 198
     new $P509, 'ExceptionHandler'
@@ -6395,7 +6395,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<0>"  :subid("47_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<0>"  :subid("47_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_520
 .annotate 'line', 202
     new $P519, 'ExceptionHandler'
@@ -6418,7 +6418,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "quote_escape:sym<misc>"  :subid("48_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "quote_escape:sym<misc>"  :subid("48_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_527
 .annotate 'line', 206
     new $P526, 'ExceptionHandler'
@@ -6476,7 +6476,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "charname"  :subid("49_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "charname"  :subid("49_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_546
 .annotate 'line', 210
     new $P545, 'ExceptionHandler'
@@ -6549,10 +6549,10 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "charnames"  :subid("50_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "charnames"  :subid("50_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_576
 .annotate 'line', 218
-    .const 'Sub' $P585 = "51_1275117587.37325" 
+    .const 'Sub' $P585 = "51_1275160380.31383" 
     capture_lex $P585
     new $P575, 'ExceptionHandler'
     set_addr $P575, control_574
@@ -6586,7 +6586,7 @@
     unless $P579, loop591_done
     shift $P583, $P579
   loop591_redo:
-    .const 'Sub' $P585 = "51_1275117587.37325" 
+    .const 'Sub' $P585 = "51_1275160380.31383" 
     capture_lex $P585
     $P585($P583)
   loop591_next:
@@ -6615,7 +6615,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block584"  :anon :subid("51_1275117587.37325") :outer("50_1275117587.37325")
+.sub "_block584"  :anon :subid("51_1275160380.31383") :outer("50_1275160380.31383")
     .param pmc param_586
 .annotate 'line', 220
     .lex "$_", param_586
@@ -6629,7 +6629,7 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "charspec"  :subid("52_1275117587.37325") :method :outer("11_1275117587.37325")
+.sub "charspec"  :subid("52_1275160380.31383") :method :outer("11_1275160380.31383")
     .param pmc param_601
 .annotate 'line', 224
     new $P600, 'ExceptionHandler'
@@ -6679,18 +6679,18 @@
 
 
 .namespace ["HLL";"Actions"]
-.sub "_block616" :load :anon :subid("53_1275117587.37325")
+.sub "_block616" :load :anon :subid("53_1275160380.31383")
 .annotate 'line', 3
-    .const 'Sub' $P618 = "11_1275117587.37325" 
+    .const 'Sub' $P618 = "11_1275160380.31383" 
     $P619 = $P618()
     .return ($P619)
 .end
 
 
 .namespace []
-.sub "_block621" :load :anon :subid("54_1275117587.37325")
+.sub "_block621" :load :anon :subid("54_1275160380.31383")
 .annotate 'line', 1
-    .const 'Sub' $P623 = "10_1275117587.37325" 
+    .const 'Sub' $P623 = "10_1275160380.31383" 
     $P624 = $P623()
     .return ($P624)
 .end
@@ -6698,7 +6698,7 @@
 ### .include 'gen/hllcompiler.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117592.29966")
+.sub "_block11"  :anon :subid("10_1275160383.44766")
 .annotate 'line', 0
     get_hll_global $P14, ["HLL";"Compiler"], "_block13" 
     capture_lex $P14
@@ -6715,15 +6715,15 @@
     $P492 = $P14()
 .annotate 'line', 1
     .return ($P492)
-    .const 'Sub' $P494 = "35_1275117592.29966" 
+    .const 'Sub' $P494 = "35_1275160383.44766" 
     .return ($P494)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post36") :outer("10_1275117592.29966")
+.sub "" :load :init :subid("post36") :outer("10_1275160383.44766")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117592.29966" 
+    .const 'Sub' $P12 = "10_1275160383.44766" 
     .local pmc block
     set block, $P12
 .annotate 'line', 2
@@ -6737,36 +6737,36 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block13"  :subid("11_1275117592.29966") :outer("10_1275117592.29966")
+.sub "_block13"  :subid("11_1275160383.44766") :outer("10_1275160383.44766")
 .annotate 'line', 6
-    .const 'Sub' $P484 = "34_1275117592.29966" 
+    .const 'Sub' $P484 = "34_1275160383.44766" 
     capture_lex $P484
-    .const 'Sub' $P442 = "32_1275117592.29966" 
+    .const 'Sub' $P442 = "32_1275160383.44766" 
     capture_lex $P442
-    .const 'Sub' $P298 = "26_1275117592.29966" 
+    .const 'Sub' $P298 = "26_1275160383.44766" 
     capture_lex $P298
-    .const 'Sub' $P283 = "25_1275117592.29966" 
+    .const 'Sub' $P283 = "25_1275160383.44766" 
     capture_lex $P283
-    .const 'Sub' $P188 = "20_1275117592.29966" 
+    .const 'Sub' $P188 = "20_1275160383.44766" 
     capture_lex $P188
-    .const 'Sub' $P153 = "18_1275117592.29966" 
+    .const 'Sub' $P153 = "18_1275160383.44766" 
     capture_lex $P153
-    .const 'Sub' $P138 = "17_1275117592.29966" 
+    .const 'Sub' $P138 = "17_1275160383.44766" 
     capture_lex $P138
-    .const 'Sub' $P122 = "16_1275117592.29966" 
+    .const 'Sub' $P122 = "16_1275160383.44766" 
     capture_lex $P122
-    .const 'Sub' $P33 = "13_1275117592.29966" 
+    .const 'Sub' $P33 = "13_1275160383.44766" 
     capture_lex $P33
-    .const 'Sub' $P15 = "12_1275117592.29966" 
+    .const 'Sub' $P15 = "12_1275160383.44766" 
     capture_lex $P15
 .annotate 'line', 14
-    .const 'Sub' $P15 = "12_1275117592.29966" 
+    .const 'Sub' $P15 = "12_1275160383.44766" 
     newclosure $P31, $P15
     .lex "value_type", $P31
 .annotate 'line', 10
     find_lex $P32, "value_type"
 .annotate 'line', 163
-    .const 'Sub' $P484 = "34_1275117592.29966" 
+    .const 'Sub' $P484 = "34_1275160383.44766" 
     newclosure $P490, $P484
 .annotate 'line', 6
     .return ($P490)
@@ -6774,7 +6774,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "" :load :init :subid("post37") :outer("11_1275117592.29966")
+.sub "" :load :init :subid("post37") :outer("11_1275160383.44766")
 .annotate 'line', 6
     get_hll_global $P14, ["HLL";"Compiler"], "_block13" 
     .local pmc block
@@ -6786,7 +6786,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "value_type"  :subid("12_1275117592.29966") :outer("11_1275117592.29966")
+.sub "value_type"  :subid("12_1275160383.44766") :outer("11_1275160383.44766")
     .param pmc param_18
 .annotate 'line', 14
     new $P17, 'ExceptionHandler'
@@ -6830,15 +6830,15 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "get_exports"  :subid("13_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "get_exports"  :subid("13_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_36
     .param pmc param_39 :slurpy
     .param pmc param_37 :optional :named("tagset")
     .param int has_param_37 :opt_flag
 .annotate 'line', 20
-    .const 'Sub' $P105 = "15_1275117592.29966" 
+    .const 'Sub' $P105 = "15_1275160383.44766" 
     capture_lex $P105
-    .const 'Sub' $P84 = "14_1275117592.29966" 
+    .const 'Sub' $P84 = "14_1275160383.44766" 
     capture_lex $P84
     new $P35, 'ExceptionHandler'
     set_addr $P35, control_34
@@ -6944,7 +6944,7 @@
     unless $P100, loop117_done
     shift $P103, $P100
   loop117_redo:
-    .const 'Sub' $P105 = "15_1275117592.29966" 
+    .const 'Sub' $P105 = "15_1275160383.44766" 
     capture_lex $P105
     $P105($P103)
   loop117_next:
@@ -6974,7 +6974,7 @@
     unless $P79, loop97_done
     shift $P82, $P79
   loop97_redo:
-    .const 'Sub' $P84 = "14_1275117592.29966" 
+    .const 'Sub' $P84 = "14_1275160383.44766" 
     capture_lex $P84
     $P84($P82)
   loop97_next:
@@ -7002,7 +7002,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block104"  :anon :subid("15_1275117592.29966") :outer("13_1275117592.29966")
+.sub "_block104"  :anon :subid("15_1275160383.44766") :outer("13_1275160383.44766")
     .param pmc param_107
 .annotate 'line', 40
     new $P106, "Undef"
@@ -7034,7 +7034,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block83"  :anon :subid("14_1275117592.29966") :outer("13_1275117592.29966")
+.sub "_block83"  :anon :subid("14_1275160383.44766") :outer("13_1275160383.44766")
     .param pmc param_86
 .annotate 'line', 34
     new $P85, "Undef"
@@ -7073,7 +7073,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "get_module"  :subid("16_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "get_module"  :subid("16_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_125
 .annotate 'line', 47
     new $P124, 'ExceptionHandler'
@@ -7113,7 +7113,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "language"  :subid("17_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "language"  :subid("17_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_141 :optional
     .param int has_param_141 :opt_flag
 .annotate 'line', 53
@@ -7157,10 +7157,10 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "load_module"  :subid("18_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "load_module"  :subid("18_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_156
 .annotate 'line', 61
-    .const 'Sub' $P166 = "19_1275117592.29966" 
+    .const 'Sub' $P166 = "19_1275160383.44766" 
     capture_lex $P166
     new $P155, 'ExceptionHandler'
     set_addr $P155, control_154
@@ -7187,7 +7187,7 @@
     assign $P164, 0
     store_lex "$loaded", $P164
 .annotate 'line', 64
-    .const 'Sub' $P166 = "19_1275117592.29966" 
+    .const 'Sub' $P166 = "19_1275160383.44766" 
     capture_lex $P166
     $P166()
 .annotate 'line', 65
@@ -7216,7 +7216,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block165"  :anon :subid("19_1275117592.29966") :outer("18_1275117592.29966")
+.sub "_block165"  :anon :subid("19_1275160383.44766") :outer("18_1275160383.44766")
 .annotate 'line', 64
     new $P173, 'ExceptionHandler'
     set_addr $P173, control_172
@@ -7249,11 +7249,11 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "import"  :subid("20_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "import"  :subid("20_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_191
     .param pmc param_192
 .annotate 'line', 69
-    .const 'Sub' $P198 = "21_1275117592.29966" 
+    .const 'Sub' $P198 = "21_1275160383.44766" 
     capture_lex $P198
     new $P190, 'ExceptionHandler'
     set_addr $P190, control_189
@@ -7275,7 +7275,7 @@
     unless $P193, loop279_done
     shift $P196, $P193
   loop279_redo:
-    .const 'Sub' $P198 = "21_1275117592.29966" 
+    .const 'Sub' $P198 = "21_1275160383.44766" 
     capture_lex $P198
     $P198($P196)
   loop279_next:
@@ -7300,14 +7300,14 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block197"  :anon :subid("21_1275117592.29966") :outer("20_1275117592.29966")
+.sub "_block197"  :anon :subid("21_1275160383.44766") :outer("20_1275160383.44766")
     .param pmc param_201
 .annotate 'line', 70
-    .const 'Sub' $P268 = "24_1275117592.29966" 
+    .const 'Sub' $P268 = "24_1275160383.44766" 
     capture_lex $P268
-    .const 'Sub' $P248 = "23_1275117592.29966" 
+    .const 'Sub' $P248 = "23_1275160383.44766" 
     capture_lex $P248
-    .const 'Sub' $P219 = "22_1275117592.29966" 
+    .const 'Sub' $P219 = "22_1275160383.44766" 
     capture_lex $P219
 .annotate 'line', 71
     new $P199, "Undef"
@@ -7355,7 +7355,7 @@
     unless $P263, loop276_done
     shift $P266, $P263
   loop276_redo:
-    .const 'Sub' $P268 = "24_1275117592.29966" 
+    .const 'Sub' $P268 = "24_1275160383.44766" 
     capture_lex $P268
     $P268($P266)
   loop276_next:
@@ -7387,7 +7387,7 @@
     unless $P243, loop260_done
     shift $P246, $P243
   loop260_redo:
-    .const 'Sub' $P248 = "23_1275117592.29966" 
+    .const 'Sub' $P248 = "23_1275160383.44766" 
     capture_lex $P248
     $P248($P246)
   loop260_next:
@@ -7421,7 +7421,7 @@
     unless $P214, loop232_done
     shift $P217, $P214
   loop232_redo:
-    .const 'Sub' $P219 = "22_1275117592.29966" 
+    .const 'Sub' $P219 = "22_1275160383.44766" 
     capture_lex $P219
     $P219($P217)
   loop232_next:
@@ -7444,7 +7444,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block267"  :anon :subid("24_1275117592.29966") :outer("21_1275117592.29966")
+.sub "_block267"  :anon :subid("24_1275160383.44766") :outer("21_1275160383.44766")
     .param pmc param_269
 .annotate 'line', 80
     .lex "$_", param_269
@@ -7464,7 +7464,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block247"  :anon :subid("23_1275117592.29966") :outer("21_1275117592.29966")
+.sub "_block247"  :anon :subid("23_1275160383.44766") :outer("21_1275160383.44766")
     .param pmc param_249
 .annotate 'line', 77
     .lex "$_", param_249
@@ -7484,7 +7484,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block218"  :anon :subid("22_1275117592.29966") :outer("21_1275117592.29966")
+.sub "_block218"  :anon :subid("22_1275160383.44766") :outer("21_1275160383.44766")
     .param pmc param_220
 .annotate 'line', 74
     .lex "$_", param_220
@@ -7505,7 +7505,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "autoprint"  :subid("25_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "autoprint"  :subid("25_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_286
 .annotate 'line', 85
     new $P285, 'ExceptionHandler'
@@ -7548,10 +7548,10 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "interactive"  :subid("26_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "interactive"  :subid("26_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_301 :slurpy :named
 .annotate 'line', 90
-    .const 'Sub' $P331 = "27_1275117592.29966" 
+    .const 'Sub' $P331 = "27_1275160383.44766" 
     capture_lex $P331
     new $P300, 'ExceptionHandler'
     set_addr $P300, control_299
@@ -7633,7 +7633,7 @@
     assign $P329, 1
     unless $P329, loop438_done
   loop438_redo:
-    .const 'Sub' $P331 = "27_1275117592.29966" 
+    .const 'Sub' $P331 = "27_1275160383.44766" 
     capture_lex $P331
     $P331()
   loop438_next:
@@ -7657,9 +7657,9 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block330"  :anon :subid("27_1275117592.29966") :outer("26_1275117592.29966")
+.sub "_block330"  :anon :subid("27_1275160383.44766") :outer("26_1275160383.44766")
 .annotate 'line', 101
-    .const 'Sub' $P367 = "28_1275117592.29966" 
+    .const 'Sub' $P367 = "28_1275160383.44766" 
     capture_lex $P367
 .annotate 'line', 104
     new $P332, "Undef"
@@ -7745,7 +7745,7 @@
     set $P363, $P365
     goto if_364_end
   if_364:
-    .const 'Sub' $P367 = "28_1275117592.29966" 
+    .const 'Sub' $P367 = "28_1275160383.44766" 
     capture_lex $P367
     $P437 = $P367()
     set $P363, $P437
@@ -7756,11 +7756,11 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block366"  :anon :subid("28_1275117592.29966") :outer("27_1275117592.29966")
+.sub "_block366"  :anon :subid("28_1275160383.44766") :outer("27_1275160383.44766")
 .annotate 'line', 116
-    .const 'Sub' $P405 = "31_1275117592.29966" 
+    .const 'Sub' $P405 = "31_1275160383.44766" 
     capture_lex $P405
-    .const 'Sub' $P373 = "29_1275117592.29966" 
+    .const 'Sub' $P373 = "29_1275160383.44766" 
     capture_lex $P373
 .annotate 'line', 118
     new $P368, "Undef"
@@ -7771,7 +7771,7 @@
     store_lex "$code", $P370
     find_lex $P371, "$output"
 .annotate 'line', 119
-    .const 'Sub' $P373 = "29_1275117592.29966" 
+    .const 'Sub' $P373 = "29_1275160383.44766" 
     capture_lex $P373
     $P373()
 .annotate 'line', 126
@@ -7804,7 +7804,7 @@
     unless $P399, loop412_done
     shift $P403, $P399
   loop412_redo:
-    .const 'Sub' $P405 = "31_1275117592.29966" 
+    .const 'Sub' $P405 = "31_1275160383.44766" 
     capture_lex $P405
     $P405($P403)
   loop412_next:
@@ -7870,9 +7870,9 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block372"  :anon :subid("29_1275117592.29966") :outer("28_1275117592.29966")
+.sub "_block372"  :anon :subid("29_1275160383.44766") :outer("28_1275160383.44766")
 .annotate 'line', 119
-    .const 'Sub' $P385 = "30_1275117592.29966" 
+    .const 'Sub' $P385 = "30_1275160383.44766" 
     capture_lex $P385
     new $P381, 'ExceptionHandler'
     set_addr $P381, control_380
@@ -7892,7 +7892,7 @@
 .annotate 'line', 121
     .local pmc exception 
     .get_results (exception) 
-    .const 'Sub' $P385 = "30_1275117592.29966" 
+    .const 'Sub' $P385 = "30_1275160383.44766" 
     newclosure $P393, $P385
     $P393(exception)
     new $P394, 'Integer'
@@ -7911,7 +7911,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block384"  :anon :subid("30_1275117592.29966") :outer("29_1275117592.29966")
+.sub "_block384"  :anon :subid("30_1275160383.44766") :outer("29_1275160383.44766")
     .param pmc param_386
 .annotate 'line', 121
     .lex "$_", param_386
@@ -7935,7 +7935,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block404"  :anon :subid("31_1275117592.29966") :outer("28_1275117592.29966")
+.sub "_block404"  :anon :subid("31_1275160383.44766") :outer("28_1275160383.44766")
     .param pmc param_406
 .annotate 'line', 127
     .lex "$_", param_406
@@ -7956,12 +7956,12 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "eval"  :subid("32_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "eval"  :subid("32_1275160383.44766") :method :outer("11_1275160383.44766")
     .param pmc param_445
     .param pmc param_446 :slurpy
     .param pmc param_447 :slurpy :named
 .annotate 'line', 144
-    .const 'Sub' $P466 = "33_1275117592.29966" 
+    .const 'Sub' $P466 = "33_1275160383.44766" 
     capture_lex $P466
     new $P444, 'ExceptionHandler'
     set_addr $P444, control_443
@@ -8008,7 +8008,7 @@
     set $P455, $I464
   if_456_end:
     unless $P455, if_454_end
-    .const 'Sub' $P466 = "33_1275117592.29966" 
+    .const 'Sub' $P466 = "33_1275160383.44766" 
     capture_lex $P466
     $P466()
   if_454_end:
@@ -8025,7 +8025,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "_block465"  :anon :subid("33_1275117592.29966") :outer("32_1275117592.29966")
+.sub "_block465"  :anon :subid("33_1275160383.44766") :outer("32_1275160383.44766")
 .annotate 'line', 150
     new $P467, "Undef"
     .lex "$outer_ctx", $P467
@@ -8078,7 +8078,7 @@
 
 
 .namespace ["HLL";"Compiler"]
-.sub "ctxsave"  :subid("34_1275117592.29966") :method :outer("11_1275117592.29966")
+.sub "ctxsave"  :subid("34_1275160383.44766") :method :outer("11_1275160383.44766")
 .annotate 'line', 163
     new $P486, 'ExceptionHandler'
     set_addr $P486, control_485
@@ -8106,9 +8106,9 @@
 
 
 .namespace []
-.sub "_block493" :load :anon :subid("35_1275117592.29966")
+.sub "_block493" :load :anon :subid("35_1275160383.44766")
 .annotate 'line', 1
-    .const 'Sub' $P495 = "10_1275117592.29966" 
+    .const 'Sub' $P495 = "10_1275160383.44766" 
     $P496 = $P495()
     .return ($P496)
 .end

Modified: branches/gc_massacre/ext/nqp-rx/src/stage0/NQP-s0.pir
==============================================================================
--- branches/gc_massacre/ext/nqp-rx/src/stage0/NQP-s0.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/ext/nqp-rx/src/stage0/NQP-s0.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -15,7 +15,7 @@
 ### .include 'gen/nqp-grammar.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117591.97262")
+.sub "_block11"  :anon :subid("10_1275160381.56318")
 .annotate 'line', 0
     get_hll_global $P14, ["NQP";"Grammar"], "_block13" 
     capture_lex $P14
@@ -32,15 +32,15 @@
     $P1379 = $P14()
 .annotate 'line', 1
     .return ($P1379)
-    .const 'Sub' $P1381 = "354_1275117591.97262" 
+    .const 'Sub' $P1381 = "354_1275160381.56318" 
     .return ($P1381)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post355") :outer("10_1275117591.97262")
+.sub "" :load :init :subid("post355") :outer("10_1275160381.56318")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117591.97262" 
+    .const 'Sub' $P12 = "10_1275160381.56318" 
     .local pmc block
     set block, $P12
     $P1384 = get_root_global ["parrot"], "P6metaclass"
@@ -49,307 +49,307 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block13"  :subid("11_1275117591.97262") :outer("10_1275117591.97262")
+.sub "_block13"  :subid("11_1275160381.56318") :outer("10_1275160381.56318")
 .annotate 'line', 4
     get_hll_global $P1295, ["NQP";"Regex"], "_block1294" 
     capture_lex $P1295
-    .const 'Sub' $P1281 = "331_1275117591.97262" 
+    .const 'Sub' $P1281 = "331_1275160381.56318" 
     capture_lex $P1281
-    .const 'Sub' $P1275 = "329_1275117591.97262" 
+    .const 'Sub' $P1275 = "329_1275160381.56318" 
     capture_lex $P1275
-    .const 'Sub' $P1269 = "327_1275117591.97262" 
+    .const 'Sub' $P1269 = "327_1275160381.56318" 
     capture_lex $P1269
-    .const 'Sub' $P1263 = "325_1275117591.97262" 
+    .const 'Sub' $P1263 = "325_1275160381.56318" 
     capture_lex $P1263
-    .const 'Sub' $P1257 = "323_1275117591.97262" 
+    .const 'Sub' $P1257 = "323_1275160381.56318" 
     capture_lex $P1257
-    .const 'Sub' $P1251 = "321_1275117591.97262" 
+    .const 'Sub' $P1251 = "321_1275160381.56318" 
     capture_lex $P1251
-    .const 'Sub' $P1244 = "319_1275117591.97262" 
+    .const 'Sub' $P1244 = "319_1275160381.56318" 
     capture_lex $P1244
-    .const 'Sub' $P1237 = "317_1275117591.97262" 
+    .const 'Sub' $P1237 = "317_1275160381.56318" 
     capture_lex $P1237
-    .const 'Sub' $P1230 = "315_1275117591.97262" 
+    .const 'Sub' $P1230 = "315_1275160381.56318" 
     capture_lex $P1230
-    .const 'Sub' $P1223 = "313_1275117591.97262" 
+    .const 'Sub' $P1223 = "313_1275160381.56318" 
     capture_lex $P1223
-    .const 'Sub' $P1217 = "311_1275117591.97262" 
+    .const 'Sub' $P1217 = "311_1275160381.56318" 
     capture_lex $P1217
-    .const 'Sub' $P1210 = "309_1275117591.97262" 
+    .const 'Sub' $P1210 = "309_1275160381.56318" 
     capture_lex $P1210
-    .const 'Sub' $P1203 = "307_1275117591.97262" 
+    .const 'Sub' $P1203 = "307_1275160381.56318" 
     capture_lex $P1203
-    .const 'Sub' $P1196 = "305_1275117591.97262" 
+    .const 'Sub' $P1196 = "305_1275160381.56318" 
     capture_lex $P1196
-    .const 'Sub' $P1189 = "303_1275117591.97262" 
+    .const 'Sub' $P1189 = "303_1275160381.56318" 
     capture_lex $P1189
-    .const 'Sub' $P1182 = "301_1275117591.97262" 
+    .const 'Sub' $P1182 = "301_1275160381.56318" 
     capture_lex $P1182
-    .const 'Sub' $P1175 = "299_1275117591.97262" 
+    .const 'Sub' $P1175 = "299_1275160381.56318" 
     capture_lex $P1175
-    .const 'Sub' $P1168 = "297_1275117591.97262" 
+    .const 'Sub' $P1168 = "297_1275160381.56318" 
     capture_lex $P1168
-    .const 'Sub' $P1161 = "295_1275117591.97262" 
+    .const 'Sub' $P1161 = "295_1275160381.56318" 
     capture_lex $P1161
-    .const 'Sub' $P1154 = "293_1275117591.97262" 
+    .const 'Sub' $P1154 = "293_1275160381.56318" 
     capture_lex $P1154
-    .const 'Sub' $P1147 = "291_1275117591.97262" 
+    .const 'Sub' $P1147 = "291_1275160381.56318" 
     capture_lex $P1147
-    .const 'Sub' $P1140 = "289_1275117591.97262" 
+    .const 'Sub' $P1140 = "289_1275160381.56318" 
     capture_lex $P1140
-    .const 'Sub' $P1133 = "287_1275117591.97262" 
+    .const 'Sub' $P1133 = "287_1275160381.56318" 
     capture_lex $P1133
-    .const 'Sub' $P1126 = "285_1275117591.97262" 
+    .const 'Sub' $P1126 = "285_1275160381.56318" 
     capture_lex $P1126
-    .const 'Sub' $P1119 = "283_1275117591.97262" 
+    .const 'Sub' $P1119 = "283_1275160381.56318" 
     capture_lex $P1119
-    .const 'Sub' $P1112 = "281_1275117591.97262" 
+    .const 'Sub' $P1112 = "281_1275160381.56318" 
     capture_lex $P1112
-    .const 'Sub' $P1105 = "279_1275117591.97262" 
+    .const 'Sub' $P1105 = "279_1275160381.56318" 
     capture_lex $P1105
-    .const 'Sub' $P1098 = "277_1275117591.97262" 
+    .const 'Sub' $P1098 = "277_1275160381.56318" 
     capture_lex $P1098
-    .const 'Sub' $P1091 = "275_1275117591.97262" 
+    .const 'Sub' $P1091 = "275_1275160381.56318" 
     capture_lex $P1091
-    .const 'Sub' $P1084 = "273_1275117591.97262" 
+    .const 'Sub' $P1084 = "273_1275160381.56318" 
     capture_lex $P1084
-    .const 'Sub' $P1077 = "271_1275117591.97262" 
+    .const 'Sub' $P1077 = "271_1275160381.56318" 
     capture_lex $P1077
-    .const 'Sub' $P1070 = "269_1275117591.97262" 
+    .const 'Sub' $P1070 = "269_1275160381.56318" 
     capture_lex $P1070
-    .const 'Sub' $P1063 = "267_1275117591.97262" 
+    .const 'Sub' $P1063 = "267_1275160381.56318" 
     capture_lex $P1063
-    .const 'Sub' $P1056 = "265_1275117591.97262" 
+    .const 'Sub' $P1056 = "265_1275160381.56318" 
     capture_lex $P1056
-    .const 'Sub' $P1049 = "263_1275117591.97262" 
+    .const 'Sub' $P1049 = "263_1275160381.56318" 
     capture_lex $P1049
-    .const 'Sub' $P1042 = "261_1275117591.97262" 
+    .const 'Sub' $P1042 = "261_1275160381.56318" 
     capture_lex $P1042
-    .const 'Sub' $P1035 = "259_1275117591.97262" 
+    .const 'Sub' $P1035 = "259_1275160381.56318" 
     capture_lex $P1035
-    .const 'Sub' $P1029 = "257_1275117591.97262" 
+    .const 'Sub' $P1029 = "257_1275160381.56318" 
     capture_lex $P1029
-    .const 'Sub' $P1022 = "255_1275117591.97262" 
+    .const 'Sub' $P1022 = "255_1275160381.56318" 
     capture_lex $P1022
-    .const 'Sub' $P1015 = "253_1275117591.97262" 
+    .const 'Sub' $P1015 = "253_1275160381.56318" 
     capture_lex $P1015
-    .const 'Sub' $P1008 = "251_1275117591.97262" 
+    .const 'Sub' $P1008 = "251_1275160381.56318" 
     capture_lex $P1008
-    .const 'Sub' $P1001 = "249_1275117591.97262" 
+    .const 'Sub' $P1001 = "249_1275160381.56318" 
     capture_lex $P1001
-    .const 'Sub' $P994 = "247_1275117591.97262" 
+    .const 'Sub' $P994 = "247_1275160381.56318" 
     capture_lex $P994
-    .const 'Sub' $P987 = "245_1275117591.97262" 
+    .const 'Sub' $P987 = "245_1275160381.56318" 
     capture_lex $P987
-    .const 'Sub' $P980 = "243_1275117591.97262" 
+    .const 'Sub' $P980 = "243_1275160381.56318" 
     capture_lex $P980
-    .const 'Sub' $P974 = "241_1275117591.97262" 
+    .const 'Sub' $P974 = "241_1275160381.56318" 
     capture_lex $P974
-    .const 'Sub' $P968 = "239_1275117591.97262" 
+    .const 'Sub' $P968 = "239_1275160381.56318" 
     capture_lex $P968
-    .const 'Sub' $P963 = "237_1275117591.97262" 
+    .const 'Sub' $P963 = "237_1275160381.56318" 
     capture_lex $P963
-    .const 'Sub' $P957 = "235_1275117591.97262" 
+    .const 'Sub' $P957 = "235_1275160381.56318" 
     capture_lex $P957
-    .const 'Sub' $P951 = "233_1275117591.97262" 
+    .const 'Sub' $P951 = "233_1275160381.56318" 
     capture_lex $P951
-    .const 'Sub' $P946 = "231_1275117591.97262" 
+    .const 'Sub' $P946 = "231_1275160381.56318" 
     capture_lex $P946
-    .const 'Sub' $P941 = "229_1275117591.97262" 
+    .const 'Sub' $P941 = "229_1275160381.56318" 
     capture_lex $P941
-    .const 'Sub' $P934 = "227_1275117591.97262" 
+    .const 'Sub' $P934 = "227_1275160381.56318" 
     capture_lex $P934
-    .const 'Sub' $P926 = "225_1275117591.97262" 
+    .const 'Sub' $P926 = "225_1275160381.56318" 
     capture_lex $P926
-    .const 'Sub' $P921 = "223_1275117591.97262" 
+    .const 'Sub' $P921 = "223_1275160381.56318" 
     capture_lex $P921
-    .const 'Sub' $P916 = "221_1275117591.97262" 
+    .const 'Sub' $P916 = "221_1275160381.56318" 
     capture_lex $P916
-    .const 'Sub' $P911 = "219_1275117591.97262" 
+    .const 'Sub' $P911 = "219_1275160381.56318" 
     capture_lex $P911
-    .const 'Sub' $P903 = "217_1275117591.97262" 
+    .const 'Sub' $P903 = "217_1275160381.56318" 
     capture_lex $P903
-    .const 'Sub' $P895 = "215_1275117591.97262" 
+    .const 'Sub' $P895 = "215_1275160381.56318" 
     capture_lex $P895
-    .const 'Sub' $P890 = "213_1275117591.97262" 
+    .const 'Sub' $P890 = "213_1275160381.56318" 
     capture_lex $P890
-    .const 'Sub' $P885 = "211_1275117591.97262" 
+    .const 'Sub' $P885 = "211_1275160381.56318" 
     capture_lex $P885
-    .const 'Sub' $P880 = "209_1275117591.97262" 
+    .const 'Sub' $P880 = "209_1275160381.56318" 
     capture_lex $P880
-    .const 'Sub' $P874 = "207_1275117591.97262" 
+    .const 'Sub' $P874 = "207_1275160381.56318" 
     capture_lex $P874
-    .const 'Sub' $P868 = "205_1275117591.97262" 
+    .const 'Sub' $P868 = "205_1275160381.56318" 
     capture_lex $P868
-    .const 'Sub' $P862 = "203_1275117591.97262" 
+    .const 'Sub' $P862 = "203_1275160381.56318" 
     capture_lex $P862
-    .const 'Sub' $P856 = "201_1275117591.97262" 
+    .const 'Sub' $P856 = "201_1275160381.56318" 
     capture_lex $P856
-    .const 'Sub' $P850 = "199_1275117591.97262" 
+    .const 'Sub' $P850 = "199_1275160381.56318" 
     capture_lex $P850
-    .const 'Sub' $P845 = "197_1275117591.97262" 
+    .const 'Sub' $P845 = "197_1275160381.56318" 
     capture_lex $P845
-    .const 'Sub' $P840 = "195_1275117591.97262" 
+    .const 'Sub' $P840 = "195_1275160381.56318" 
     capture_lex $P840
-    .const 'Sub' $P827 = "191_1275117591.97262" 
+    .const 'Sub' $P827 = "191_1275160381.56318" 
     capture_lex $P827
-    .const 'Sub' $P819 = "189_1275117591.97262" 
+    .const 'Sub' $P819 = "189_1275160381.56318" 
     capture_lex $P819
-    .const 'Sub' $P813 = "187_1275117591.97262" 
+    .const 'Sub' $P813 = "187_1275160381.56318" 
     capture_lex $P813
-    .const 'Sub' $P806 = "185_1275117591.97262" 
+    .const 'Sub' $P806 = "185_1275160381.56318" 
     capture_lex $P806
-    .const 'Sub' $P800 = "183_1275117591.97262" 
+    .const 'Sub' $P800 = "183_1275160381.56318" 
     capture_lex $P800
-    .const 'Sub' $P792 = "181_1275117591.97262" 
+    .const 'Sub' $P792 = "181_1275160381.56318" 
     capture_lex $P792
-    .const 'Sub' $P784 = "179_1275117591.97262" 
+    .const 'Sub' $P784 = "179_1275160381.56318" 
     capture_lex $P784
-    .const 'Sub' $P778 = "177_1275117591.97262" 
+    .const 'Sub' $P778 = "177_1275160381.56318" 
     capture_lex $P778
-    .const 'Sub' $P772 = "175_1275117591.97262" 
+    .const 'Sub' $P772 = "175_1275160381.56318" 
     capture_lex $P772
-    .const 'Sub' $P757 = "171_1275117591.97262" 
+    .const 'Sub' $P757 = "171_1275160381.56318" 
     capture_lex $P757
-    .const 'Sub' $P720 = "169_1275117591.97262" 
+    .const 'Sub' $P720 = "169_1275160381.56318" 
     capture_lex $P720
-    .const 'Sub' $P712 = "167_1275117591.97262" 
+    .const 'Sub' $P712 = "167_1275160381.56318" 
     capture_lex $P712
-    .const 'Sub' $P706 = "165_1275117591.97262" 
+    .const 'Sub' $P706 = "165_1275160381.56318" 
     capture_lex $P706
-    .const 'Sub' $P696 = "163_1275117591.97262" 
+    .const 'Sub' $P696 = "163_1275160381.56318" 
     capture_lex $P696
-    .const 'Sub' $P682 = "161_1275117591.97262" 
+    .const 'Sub' $P682 = "161_1275160381.56318" 
     capture_lex $P682
-    .const 'Sub' $P673 = "159_1275117591.97262" 
+    .const 'Sub' $P673 = "159_1275160381.56318" 
     capture_lex $P673
-    .const 'Sub' $P654 = "157_1275117591.97262" 
+    .const 'Sub' $P654 = "157_1275160381.56318" 
     capture_lex $P654
-    .const 'Sub' $P630 = "155_1275117591.97262" 
+    .const 'Sub' $P630 = "155_1275160381.56318" 
     capture_lex $P630
-    .const 'Sub' $P623 = "153_1275117591.97262" 
+    .const 'Sub' $P623 = "153_1275160381.56318" 
     capture_lex $P623
-    .const 'Sub' $P616 = "151_1275117591.97262" 
+    .const 'Sub' $P616 = "151_1275160381.56318" 
     capture_lex $P616
-    .const 'Sub' $P606 = "147_1275117591.97262" 
+    .const 'Sub' $P606 = "147_1275160381.56318" 
     capture_lex $P606
-    .const 'Sub' $P598 = "145_1275117591.97262" 
+    .const 'Sub' $P598 = "145_1275160381.56318" 
     capture_lex $P598
-    .const 'Sub' $P592 = "143_1275117591.97262" 
+    .const 'Sub' $P592 = "143_1275160381.56318" 
     capture_lex $P592
-    .const 'Sub' $P578 = "141_1275117591.97262" 
+    .const 'Sub' $P578 = "141_1275160381.56318" 
     capture_lex $P578
-    .const 'Sub' $P571 = "139_1275117591.97262" 
+    .const 'Sub' $P571 = "139_1275160381.56318" 
     capture_lex $P571
-    .const 'Sub' $P564 = "137_1275117591.97262" 
+    .const 'Sub' $P564 = "137_1275160381.56318" 
     capture_lex $P564
-    .const 'Sub' $P557 = "135_1275117591.97262" 
+    .const 'Sub' $P557 = "135_1275160381.56318" 
     capture_lex $P557
-    .const 'Sub' $P530 = "131_1275117591.97262" 
+    .const 'Sub' $P530 = "131_1275160381.56318" 
     capture_lex $P530
-    .const 'Sub' $P521 = "129_1275117591.97262" 
+    .const 'Sub' $P521 = "129_1275160381.56318" 
     capture_lex $P521
-    .const 'Sub' $P514 = "127_1275117591.97262" 
+    .const 'Sub' $P514 = "127_1275160381.56318" 
     capture_lex $P514
-    .const 'Sub' $P505 = "123_1275117591.97262" 
+    .const 'Sub' $P505 = "123_1275160381.56318" 
     capture_lex $P505
-    .const 'Sub' $P500 = "121_1275117591.97262" 
+    .const 'Sub' $P500 = "121_1275160381.56318" 
     capture_lex $P500
-    .const 'Sub' $P488 = "119_1275117591.97262" 
+    .const 'Sub' $P488 = "119_1275160381.56318" 
     capture_lex $P488
-    .const 'Sub' $P476 = "117_1275117591.97262" 
+    .const 'Sub' $P476 = "117_1275160381.56318" 
     capture_lex $P476
-    .const 'Sub' $P468 = "115_1275117591.97262" 
+    .const 'Sub' $P468 = "115_1275160381.56318" 
     capture_lex $P468
-    .const 'Sub' $P463 = "113_1275117591.97262" 
+    .const 'Sub' $P463 = "113_1275160381.56318" 
     capture_lex $P463
-    .const 'Sub' $P457 = "111_1275117591.97262" 
+    .const 'Sub' $P457 = "111_1275160381.56318" 
     capture_lex $P457
-    .const 'Sub' $P451 = "109_1275117591.97262" 
+    .const 'Sub' $P451 = "109_1275160381.56318" 
     capture_lex $P451
-    .const 'Sub' $P445 = "107_1275117591.97262" 
+    .const 'Sub' $P445 = "107_1275160381.56318" 
     capture_lex $P445
-    .const 'Sub' $P439 = "105_1275117591.97262" 
+    .const 'Sub' $P439 = "105_1275160381.56318" 
     capture_lex $P439
-    .const 'Sub' $P433 = "103_1275117591.97262" 
+    .const 'Sub' $P433 = "103_1275160381.56318" 
     capture_lex $P433
-    .const 'Sub' $P427 = "101_1275117591.97262" 
+    .const 'Sub' $P427 = "101_1275160381.56318" 
     capture_lex $P427
-    .const 'Sub' $P421 = "99_1275117591.97262" 
+    .const 'Sub' $P421 = "99_1275160381.56318" 
     capture_lex $P421
-    .const 'Sub' $P415 = "97_1275117591.97262" 
+    .const 'Sub' $P415 = "97_1275160381.56318" 
     capture_lex $P415
-    .const 'Sub' $P407 = "95_1275117591.97262" 
+    .const 'Sub' $P407 = "95_1275160381.56318" 
     capture_lex $P407
-    .const 'Sub' $P399 = "93_1275117591.97262" 
+    .const 'Sub' $P399 = "93_1275160381.56318" 
     capture_lex $P399
-    .const 'Sub' $P387 = "89_1275117591.97262" 
+    .const 'Sub' $P387 = "89_1275160381.56318" 
     capture_lex $P387
-    .const 'Sub' $P379 = "87_1275117591.97262" 
+    .const 'Sub' $P379 = "87_1275160381.56318" 
     capture_lex $P379
-    .const 'Sub' $P369 = "83_1275117591.97262" 
+    .const 'Sub' $P369 = "83_1275160381.56318" 
     capture_lex $P369
-    .const 'Sub' $P362 = "81_1275117591.97262" 
+    .const 'Sub' $P362 = "81_1275160381.56318" 
     capture_lex $P362
-    .const 'Sub' $P355 = "79_1275117591.97262" 
+    .const 'Sub' $P355 = "79_1275160381.56318" 
     capture_lex $P355
-    .const 'Sub' $P343 = "75_1275117591.97262" 
+    .const 'Sub' $P343 = "75_1275160381.56318" 
     capture_lex $P343
-    .const 'Sub' $P335 = "73_1275117591.97262" 
+    .const 'Sub' $P335 = "73_1275160381.56318" 
     capture_lex $P335
-    .const 'Sub' $P327 = "71_1275117591.97262" 
+    .const 'Sub' $P327 = "71_1275160381.56318" 
     capture_lex $P327
-    .const 'Sub' $P307 = "69_1275117591.97262" 
+    .const 'Sub' $P307 = "69_1275160381.56318" 
     capture_lex $P307
-    .const 'Sub' $P298 = "67_1275117591.97262" 
+    .const 'Sub' $P298 = "67_1275160381.56318" 
     capture_lex $P298
-    .const 'Sub' $P280 = "64_1275117591.97262" 
+    .const 'Sub' $P280 = "64_1275160381.56318" 
     capture_lex $P280
-    .const 'Sub' $P260 = "62_1275117591.97262" 
+    .const 'Sub' $P260 = "62_1275160381.56318" 
     capture_lex $P260
-    .const 'Sub' $P251 = "58_1275117591.97262" 
+    .const 'Sub' $P251 = "58_1275160381.56318" 
     capture_lex $P251
-    .const 'Sub' $P246 = "56_1275117591.97262" 
+    .const 'Sub' $P246 = "56_1275160381.56318" 
     capture_lex $P246
-    .const 'Sub' $P237 = "52_1275117591.97262" 
+    .const 'Sub' $P237 = "52_1275160381.56318" 
     capture_lex $P237
-    .const 'Sub' $P232 = "50_1275117591.97262" 
+    .const 'Sub' $P232 = "50_1275160381.56318" 
     capture_lex $P232
-    .const 'Sub' $P227 = "48_1275117591.97262" 
+    .const 'Sub' $P227 = "48_1275160381.56318" 
     capture_lex $P227
-    .const 'Sub' $P219 = "46_1275117591.97262" 
+    .const 'Sub' $P219 = "46_1275160381.56318" 
     capture_lex $P219
-    .const 'Sub' $P212 = "44_1275117591.97262" 
+    .const 'Sub' $P212 = "44_1275160381.56318" 
     capture_lex $P212
-    .const 'Sub' $P206 = "42_1275117591.97262" 
+    .const 'Sub' $P206 = "42_1275160381.56318" 
     capture_lex $P206
-    .const 'Sub' $P198 = "40_1275117591.97262" 
+    .const 'Sub' $P198 = "40_1275160381.56318" 
     capture_lex $P198
-    .const 'Sub' $P192 = "38_1275117591.97262" 
+    .const 'Sub' $P192 = "38_1275160381.56318" 
     capture_lex $P192
-    .const 'Sub' $P186 = "36_1275117591.97262" 
+    .const 'Sub' $P186 = "36_1275160381.56318" 
     capture_lex $P186
-    .const 'Sub' $P170 = "33_1275117591.97262" 
+    .const 'Sub' $P170 = "33_1275160381.56318" 
     capture_lex $P170
-    .const 'Sub' $P157 = "31_1275117591.97262" 
+    .const 'Sub' $P157 = "31_1275160381.56318" 
     capture_lex $P157
-    .const 'Sub' $P150 = "29_1275117591.97262" 
+    .const 'Sub' $P150 = "29_1275160381.56318" 
     capture_lex $P150
-    .const 'Sub' $P100 = "26_1275117591.97262" 
+    .const 'Sub' $P100 = "26_1275160381.56318" 
     capture_lex $P100
-    .const 'Sub' $P82 = "23_1275117591.97262" 
+    .const 'Sub' $P82 = "23_1275160381.56318" 
     capture_lex $P82
-    .const 'Sub' $P68 = "21_1275117591.97262" 
+    .const 'Sub' $P68 = "21_1275160381.56318" 
     capture_lex $P68
-    .const 'Sub' $P54 = "19_1275117591.97262" 
+    .const 'Sub' $P54 = "19_1275160381.56318" 
     capture_lex $P54
-    .const 'Sub' $P46 = "17_1275117591.97262" 
+    .const 'Sub' $P46 = "17_1275160381.56318" 
     capture_lex $P46
-    .const 'Sub' $P39 = "15_1275117591.97262" 
+    .const 'Sub' $P39 = "15_1275160381.56318" 
     capture_lex $P39
-    .const 'Sub' $P33 = "13_1275117591.97262" 
+    .const 'Sub' $P33 = "13_1275160381.56318" 
     capture_lex $P33
-    .const 'Sub' $P15 = "12_1275117591.97262" 
+    .const 'Sub' $P15 = "12_1275160381.56318" 
     capture_lex $P15
     $P0 = find_dynamic_lex "$*CTXSAVE"
     if null $P0 goto ctxsave_done
@@ -363,13 +363,13 @@
     $P1358 = $P1295()
 .annotate 'line', 4
     .return ($P1358)
-    .const 'Sub' $P1360 = "353_1275117591.97262" 
+    .const 'Sub' $P1360 = "353_1275160381.56318" 
     .return ($P1360)
 .end
 
 
 .namespace ["NQP";"Grammar"]
-.sub "" :load :init :subid("post356") :outer("11_1275117591.97262")
+.sub "" :load :init :subid("post356") :outer("11_1275160381.56318")
 .annotate 'line', 4
     get_hll_global $P14, ["NQP";"Grammar"], "_block13" 
     .local pmc block
@@ -426,7 +426,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "TOP"  :subid("12_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "TOP"  :subid("12_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     new $P17, 'ExceptionHandler'
     set_addr $P17, control_16
@@ -509,7 +509,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "identifier"  :subid("13_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "identifier"  :subid("13_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx34_tgt
     .local int rx34_pos
@@ -567,7 +567,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__identifier"  :subid("14_1275117591.97262") :method
+.sub "!PREFIX__identifier"  :subid("14_1275160381.56318") :method
 .annotate 'line', 4
     $P36 = self."!PREFIX__!subrule"("ident", "")
     new $P37, "ResizablePMCArray"
@@ -577,7 +577,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "name"  :subid("15_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "name"  :subid("15_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx40_tgt
     .local int rx40_pos
@@ -651,7 +651,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__name"  :subid("16_1275117591.97262") :method
+.sub "!PREFIX__name"  :subid("16_1275160381.56318") :method
 .annotate 'line', 4
     new $P42, "ResizablePMCArray"
     push $P42, ""
@@ -660,7 +660,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "deflongname"  :subid("17_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "deflongname"  :subid("17_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx47_tgt
     .local int rx47_pos
@@ -733,7 +733,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__deflongname"  :subid("18_1275117591.97262") :method
+.sub "!PREFIX__deflongname"  :subid("18_1275160381.56318") :method
 .annotate 'line', 4
     $P49 = self."!PREFIX__!subrule"("identifier", "")
     new $P50, "ResizablePMCArray"
@@ -743,7 +743,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "ENDSTMT"  :subid("19_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "ENDSTMT"  :subid("19_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx55_tgt
     .local int rx55_pos
@@ -875,7 +875,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__ENDSTMT"  :subid("20_1275117591.97262") :method
+.sub "!PREFIX__ENDSTMT"  :subid("20_1275160381.56318") :method
 .annotate 'line', 4
     new $P57, "ResizablePMCArray"
     push $P57, ""
@@ -884,7 +884,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "ws"  :subid("21_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "ws"  :subid("21_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx69_tgt
     .local int rx69_pos
@@ -1039,7 +1039,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__ws"  :subid("22_1275117591.97262") :method
+.sub "!PREFIX__ws"  :subid("22_1275160381.56318") :method
 .annotate 'line', 4
     new $P71, "ResizablePMCArray"
     push $P71, ""
@@ -1049,9 +1049,9 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "unv"  :subid("23_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "unv"  :subid("23_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
-    .const 'Sub' $P90 = "25_1275117591.97262" 
+    .const 'Sub' $P90 = "25_1275160381.56318" 
     capture_lex $P90
     .local string rx83_tgt
     .local int rx83_pos
@@ -1097,7 +1097,7 @@
   rxanchor88_done:
   # rx subrule "before" subtype=zerowidth negate=
     rx83_cur."!cursor_pos"(rx83_pos)
-    .const 'Sub' $P90 = "25_1275117591.97262" 
+    .const 'Sub' $P90 = "25_1275160381.56318" 
     capture_lex $P90
     $P10 = rx83_cur."before"($P90)
     unless $P10, rx83_fail
@@ -1176,7 +1176,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__unv"  :subid("24_1275117591.97262") :method
+.sub "!PREFIX__unv"  :subid("24_1275160381.56318") :method
 .annotate 'line', 4
     new $P85, "ResizablePMCArray"
     push $P85, ""
@@ -1187,7 +1187,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block89"  :anon :subid("25_1275117591.97262") :method :outer("23_1275117591.97262")
+.sub "_block89"  :anon :subid("25_1275160381.56318") :method :outer("23_1275160381.56318")
 .annotate 'line', 45
     .local string rx91_tgt
     .local int rx91_pos
@@ -1277,9 +1277,9 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "pod_comment"  :subid("26_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "pod_comment"  :subid("26_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
-    .const 'Sub' $P141 = "28_1275117591.97262" 
+    .const 'Sub' $P141 = "28_1275160381.56318" 
     capture_lex $P141
     .local string rx101_tgt
     .local int rx101_pos
@@ -1765,7 +1765,7 @@
   rxanchor139_done:
   # rx subrule "before" subtype=zerowidth negate=
     rx101_cur."!cursor_pos"(rx101_pos)
-    .const 'Sub' $P141 = "28_1275117591.97262" 
+    .const 'Sub' $P141 = "28_1275160381.56318" 
     capture_lex $P141
     $P10 = rx101_cur."before"($P141)
     unless $P10, rx101_fail
@@ -1816,7 +1816,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__pod_comment"  :subid("27_1275117591.97262") :method
+.sub "!PREFIX__pod_comment"  :subid("27_1275160381.56318") :method
 .annotate 'line', 4
     new $P103, "ResizablePMCArray"
     push $P103, ""
@@ -1825,7 +1825,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block140"  :anon :subid("28_1275117591.97262") :method :outer("26_1275117591.97262")
+.sub "_block140"  :anon :subid("28_1275160381.56318") :method :outer("26_1275160381.56318")
 .annotate 'line', 68
     .local string rx142_tgt
     .local int rx142_pos
@@ -1944,7 +1944,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "comp_unit"  :subid("29_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "comp_unit"  :subid("29_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx151_tgt
     .local int rx151_pos
@@ -2029,7 +2029,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__comp_unit"  :subid("30_1275117591.97262") :method
+.sub "!PREFIX__comp_unit"  :subid("30_1275160381.56318") :method
 .annotate 'line', 4
     $P153 = self."!PREFIX__!subrule"("", "")
     new $P154, "ResizablePMCArray"
@@ -2039,7 +2039,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statementlist"  :subid("31_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statementlist"  :subid("31_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx158_tgt
     .local int rx158_pos
@@ -2147,7 +2147,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statementlist"  :subid("32_1275117591.97262") :method
+.sub "!PREFIX__statementlist"  :subid("32_1275160381.56318") :method
 .annotate 'line', 4
     new $P160, "ResizablePMCArray"
     push $P160, ""
@@ -2157,9 +2157,9 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement"  :subid("33_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement"  :subid("33_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
-    .const 'Sub' $P176 = "35_1275117591.97262" 
+    .const 'Sub' $P176 = "35_1275160381.56318" 
     capture_lex $P176
     .local string rx171_tgt
     .local int rx171_pos
@@ -2194,7 +2194,7 @@
 .annotate 'line', 95
   # rx subrule "before" subtype=zerowidth negate=1
     rx171_cur."!cursor_pos"(rx171_pos)
-    .const 'Sub' $P176 = "35_1275117591.97262" 
+    .const 'Sub' $P176 = "35_1275160381.56318" 
     capture_lex $P176
     $P10 = rx171_cur."before"($P176)
     if $P10, rx171_fail
@@ -2299,7 +2299,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement"  :subid("34_1275117591.97262") :method
+.sub "!PREFIX__statement"  :subid("34_1275160381.56318") :method
 .annotate 'line', 4
     new $P173, "ResizablePMCArray"
     push $P173, ""
@@ -2308,7 +2308,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block175"  :anon :subid("35_1275117591.97262") :method :outer("33_1275117591.97262")
+.sub "_block175"  :anon :subid("35_1275160381.56318") :method :outer("33_1275160381.56318")
 .annotate 'line', 95
     .local string rx177_tgt
     .local int rx177_pos
@@ -2372,7 +2372,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "eat_terminator"  :subid("36_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "eat_terminator"  :subid("36_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx187_tgt
     .local int rx187_pos
@@ -2459,7 +2459,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__eat_terminator"  :subid("37_1275117591.97262") :method
+.sub "!PREFIX__eat_terminator"  :subid("37_1275160381.56318") :method
 .annotate 'line', 4
     new $P189, "ResizablePMCArray"
     push $P189, ""
@@ -2471,7 +2471,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "xblock"  :subid("38_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "xblock"  :subid("38_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx193_tgt
     .local int rx193_pos
@@ -2542,7 +2542,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__xblock"  :subid("39_1275117591.97262") :method
+.sub "!PREFIX__xblock"  :subid("39_1275160381.56318") :method
 .annotate 'line', 4
     $P195 = self."!PREFIX__!subrule"("EXPR", "")
     new $P196, "ResizablePMCArray"
@@ -2552,7 +2552,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "pblock"  :subid("40_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "pblock"  :subid("40_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx199_tgt
     .local int rx199_pos
@@ -2671,7 +2671,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__pblock"  :subid("41_1275117591.97262") :method
+.sub "!PREFIX__pblock"  :subid("41_1275160381.56318") :method
 .annotate 'line', 4
     $P201 = self."!PREFIX__!subrule"("", "")
     $P202 = self."!PREFIX__!subrule"("", "")
@@ -2684,7 +2684,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "lambda"  :subid("42_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "lambda"  :subid("42_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx207_tgt
     .local int rx207_pos
@@ -2755,7 +2755,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__lambda"  :subid("43_1275117591.97262") :method
+.sub "!PREFIX__lambda"  :subid("43_1275160381.56318") :method
 .annotate 'line', 4
     new $P209, "ResizablePMCArray"
     push $P209, "<->"
@@ -2765,7 +2765,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "block"  :subid("44_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "block"  :subid("44_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx213_tgt
     .local int rx213_pos
@@ -2848,7 +2848,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__block"  :subid("45_1275117591.97262") :method
+.sub "!PREFIX__block"  :subid("45_1275160381.56318") :method
 .annotate 'line', 4
     $P215 = self."!PREFIX__!subrule"("", "")
     new $P216, "ResizablePMCArray"
@@ -2859,7 +2859,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "blockoid"  :subid("46_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "blockoid"  :subid("46_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx220_tgt
     .local int rx220_pos
@@ -2954,7 +2954,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__blockoid"  :subid("47_1275117591.97262") :method
+.sub "!PREFIX__blockoid"  :subid("47_1275160381.56318") :method
 .annotate 'line', 4
     $P222 = self."!PREFIX__!subrule"("", "")
     new $P223, "ResizablePMCArray"
@@ -2964,7 +2964,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "newpad"  :subid("48_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "newpad"  :subid("48_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx228_tgt
     .local int rx228_pos
@@ -3015,7 +3015,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__newpad"  :subid("49_1275117591.97262") :method
+.sub "!PREFIX__newpad"  :subid("49_1275160381.56318") :method
 .annotate 'line', 4
     new $P230, "ResizablePMCArray"
     push $P230, ""
@@ -3024,7 +3024,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "outerctx"  :subid("50_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "outerctx"  :subid("50_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx233_tgt
     .local int rx233_pos
@@ -3075,7 +3075,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__outerctx"  :subid("51_1275117591.97262") :method
+.sub "!PREFIX__outerctx"  :subid("51_1275160381.56318") :method
 .annotate 'line', 4
     new $P235, "ResizablePMCArray"
     push $P235, ""
@@ -3084,7 +3084,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "finishpad"  :subid("52_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "finishpad"  :subid("52_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx238_tgt
     .local int rx238_pos
@@ -3135,7 +3135,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__finishpad"  :subid("53_1275117591.97262") :method
+.sub "!PREFIX__finishpad"  :subid("53_1275160381.56318") :method
 .annotate 'line', 4
     new $P240, "ResizablePMCArray"
     push $P240, ""
@@ -3144,7 +3144,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "terminator"  :subid("54_1275117591.97262") :method
+.sub "terminator"  :subid("54_1275160381.56318") :method
 .annotate 'line', 147
     $P243 = self."!protoregex"("terminator")
     .return ($P243)
@@ -3152,7 +3152,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__terminator"  :subid("55_1275117591.97262") :method
+.sub "!PREFIX__terminator"  :subid("55_1275160381.56318") :method
 .annotate 'line', 147
     $P245 = self."!PREFIX__!protoregex"("terminator")
     .return ($P245)
@@ -3160,7 +3160,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "terminator:sym<;>"  :subid("56_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "terminator:sym<;>"  :subid("56_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx247_tgt
     .local int rx247_pos
@@ -3217,7 +3217,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__terminator:sym<;>"  :subid("57_1275117591.97262") :method
+.sub "!PREFIX__terminator:sym<;>"  :subid("57_1275160381.56318") :method
 .annotate 'line', 4
     new $P249, "ResizablePMCArray"
     push $P249, ";"
@@ -3226,7 +3226,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "terminator:sym<}>"  :subid("58_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "terminator:sym<}>"  :subid("58_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx252_tgt
     .local int rx252_pos
@@ -3283,7 +3283,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__terminator:sym<}>"  :subid("59_1275117591.97262") :method
+.sub "!PREFIX__terminator:sym<}>"  :subid("59_1275160381.56318") :method
 .annotate 'line', 4
     new $P254, "ResizablePMCArray"
     push $P254, "}"
@@ -3292,7 +3292,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control"  :subid("60_1275117591.97262") :method
+.sub "statement_control"  :subid("60_1275160381.56318") :method
 .annotate 'line', 154
     $P257 = self."!protoregex"("statement_control")
     .return ($P257)
@@ -3300,7 +3300,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control"  :subid("61_1275117591.97262") :method
+.sub "!PREFIX__statement_control"  :subid("61_1275160381.56318") :method
 .annotate 'line', 154
     $P259 = self."!PREFIX__!protoregex"("statement_control")
     .return ($P259)
@@ -3308,7 +3308,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<if>"  :subid("62_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<if>"  :subid("62_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx261_tgt
     .local int rx261_pos
@@ -3502,7 +3502,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<if>"  :subid("63_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<if>"  :subid("63_1275160381.56318") :method
 .annotate 'line', 4
     new $P263, "ResizablePMCArray"
     push $P263, "if"
@@ -3511,9 +3511,9 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<unless>"  :subid("64_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<unless>"  :subid("64_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
-    .const 'Sub' $P291 = "66_1275117591.97262" 
+    .const 'Sub' $P291 = "66_1275160381.56318" 
     capture_lex $P291
     .local string rx281_tgt
     .local int rx281_pos
@@ -3601,7 +3601,7 @@
     rx281_pos = $P10."pos"()
   # rx subrule "before" subtype=zerowidth negate=1
     rx281_cur."!cursor_pos"(rx281_pos)
-    .const 'Sub' $P291 = "66_1275117591.97262" 
+    .const 'Sub' $P291 = "66_1275160381.56318" 
     capture_lex $P291
     $P10 = rx281_cur."before"($P291)
     if $P10, rx281_fail
@@ -3653,7 +3653,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<unless>"  :subid("65_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<unless>"  :subid("65_1275160381.56318") :method
 .annotate 'line', 4
     new $P283, "ResizablePMCArray"
     push $P283, "unless"
@@ -3662,7 +3662,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block290"  :anon :subid("66_1275117591.97262") :method :outer("64_1275117591.97262")
+.sub "_block290"  :anon :subid("66_1275160381.56318") :method :outer("64_1275160381.56318")
 .annotate 'line', 166
     .local string rx292_tgt
     .local int rx292_pos
@@ -3718,7 +3718,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<while>"  :subid("67_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<while>"  :subid("67_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx299_tgt
     .local int rx299_pos
@@ -3828,7 +3828,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<while>"  :subid("68_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<while>"  :subid("68_1275160381.56318") :method
 .annotate 'line', 4
     new $P301, "ResizablePMCArray"
     push $P301, "until"
@@ -3838,7 +3838,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<repeat>"  :subid("69_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<repeat>"  :subid("69_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx308_tgt
     .local int rx308_pos
@@ -4073,7 +4073,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<repeat>"  :subid("70_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<repeat>"  :subid("70_1275160381.56318") :method
 .annotate 'line', 4
     new $P310, "ResizablePMCArray"
     push $P310, "repeat"
@@ -4082,7 +4082,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<for>"  :subid("71_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<for>"  :subid("71_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx328_tgt
     .local int rx328_pos
@@ -4179,7 +4179,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<for>"  :subid("72_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<for>"  :subid("72_1275160381.56318") :method
 .annotate 'line', 4
     new $P330, "ResizablePMCArray"
     push $P330, "for"
@@ -4188,7 +4188,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<CATCH>"  :subid("73_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<CATCH>"  :subid("73_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx336_tgt
     .local int rx336_pos
@@ -4285,7 +4285,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<CATCH>"  :subid("74_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<CATCH>"  :subid("74_1275160381.56318") :method
 .annotate 'line', 4
     new $P338, "ResizablePMCArray"
     push $P338, "CATCH"
@@ -4294,7 +4294,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_control:sym<CONTROL>"  :subid("75_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_control:sym<CONTROL>"  :subid("75_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx344_tgt
     .local int rx344_pos
@@ -4391,7 +4391,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_control:sym<CONTROL>"  :subid("76_1275117591.97262") :method
+.sub "!PREFIX__statement_control:sym<CONTROL>"  :subid("76_1275160381.56318") :method
 .annotate 'line', 4
     new $P346, "ResizablePMCArray"
     push $P346, "CONTROL"
@@ -4400,7 +4400,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_prefix"  :subid("77_1275117591.97262") :method
+.sub "statement_prefix"  :subid("77_1275160381.56318") :method
 .annotate 'line', 197
     $P352 = self."!protoregex"("statement_prefix")
     .return ($P352)
@@ -4408,7 +4408,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_prefix"  :subid("78_1275117591.97262") :method
+.sub "!PREFIX__statement_prefix"  :subid("78_1275160381.56318") :method
 .annotate 'line', 197
     $P354 = self."!PREFIX__!protoregex"("statement_prefix")
     .return ($P354)
@@ -4416,7 +4416,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_prefix:sym<INIT>"  :subid("79_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_prefix:sym<INIT>"  :subid("79_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx356_tgt
     .local int rx356_pos
@@ -4495,7 +4495,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_prefix:sym<INIT>"  :subid("80_1275117591.97262") :method
+.sub "!PREFIX__statement_prefix:sym<INIT>"  :subid("80_1275160381.56318") :method
 .annotate 'line', 4
     $P358 = self."!PREFIX__!subrule"("blorst", "INIT")
     new $P359, "ResizablePMCArray"
@@ -4505,7 +4505,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_prefix:sym<try>"  :subid("81_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_prefix:sym<try>"  :subid("81_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx363_tgt
     .local int rx363_pos
@@ -4586,7 +4586,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_prefix:sym<try>"  :subid("82_1275117591.97262") :method
+.sub "!PREFIX__statement_prefix:sym<try>"  :subid("82_1275160381.56318") :method
 .annotate 'line', 4
     $P365 = self."!PREFIX__!subrule"("blorst", "try")
     new $P366, "ResizablePMCArray"
@@ -4596,7 +4596,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "blorst"  :subid("83_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "blorst"  :subid("83_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx370_tgt
     .local int rx370_pos
@@ -4685,7 +4685,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__blorst"  :subid("84_1275117591.97262") :method
+.sub "!PREFIX__blorst"  :subid("84_1275160381.56318") :method
 .annotate 'line', 4
     new $P372, "ResizablePMCArray"
     push $P372, ""
@@ -4694,7 +4694,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_cond"  :subid("85_1275117591.97262") :method
+.sub "statement_mod_cond"  :subid("85_1275160381.56318") :method
 .annotate 'line', 211
     $P376 = self."!protoregex"("statement_mod_cond")
     .return ($P376)
@@ -4702,7 +4702,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_cond"  :subid("86_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_cond"  :subid("86_1275160381.56318") :method
 .annotate 'line', 211
     $P378 = self."!PREFIX__!protoregex"("statement_mod_cond")
     .return ($P378)
@@ -4710,7 +4710,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_cond:sym<if>"  :subid("87_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_mod_cond:sym<if>"  :subid("87_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx380_tgt
     .local int rx380_pos
@@ -4799,7 +4799,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_cond:sym<if>"  :subid("88_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_cond:sym<if>"  :subid("88_1275160381.56318") :method
 .annotate 'line', 4
     new $P382, "ResizablePMCArray"
     push $P382, "if"
@@ -4808,7 +4808,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_cond:sym<unless>"  :subid("89_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_mod_cond:sym<unless>"  :subid("89_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx388_tgt
     .local int rx388_pos
@@ -4897,7 +4897,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_cond:sym<unless>"  :subid("90_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_cond:sym<unless>"  :subid("90_1275160381.56318") :method
 .annotate 'line', 4
     new $P390, "ResizablePMCArray"
     push $P390, "unless"
@@ -4906,7 +4906,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_loop"  :subid("91_1275117591.97262") :method
+.sub "statement_mod_loop"  :subid("91_1275160381.56318") :method
 .annotate 'line', 216
     $P396 = self."!protoregex"("statement_mod_loop")
     .return ($P396)
@@ -4914,7 +4914,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_loop"  :subid("92_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_loop"  :subid("92_1275160381.56318") :method
 .annotate 'line', 216
     $P398 = self."!PREFIX__!protoregex"("statement_mod_loop")
     .return ($P398)
@@ -4922,7 +4922,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_loop:sym<while>"  :subid("93_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_mod_loop:sym<while>"  :subid("93_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx400_tgt
     .local int rx400_pos
@@ -5011,7 +5011,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_loop:sym<while>"  :subid("94_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_loop:sym<while>"  :subid("94_1275160381.56318") :method
 .annotate 'line', 4
     new $P402, "ResizablePMCArray"
     push $P402, "while"
@@ -5020,7 +5020,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "statement_mod_loop:sym<until>"  :subid("95_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "statement_mod_loop:sym<until>"  :subid("95_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx408_tgt
     .local int rx408_pos
@@ -5109,7 +5109,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__statement_mod_loop:sym<until>"  :subid("96_1275117591.97262") :method
+.sub "!PREFIX__statement_mod_loop:sym<until>"  :subid("96_1275160381.56318") :method
 .annotate 'line', 4
     new $P410, "ResizablePMCArray"
     push $P410, "until"
@@ -5118,7 +5118,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<fatarrow>"  :subid("97_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<fatarrow>"  :subid("97_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx416_tgt
     .local int rx416_pos
@@ -5176,7 +5176,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<fatarrow>"  :subid("98_1275117591.97262") :method
+.sub "!PREFIX__term:sym<fatarrow>"  :subid("98_1275160381.56318") :method
 .annotate 'line', 4
     $P418 = self."!PREFIX__!subrule"("fatarrow", "")
     new $P419, "ResizablePMCArray"
@@ -5186,7 +5186,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<colonpair>"  :subid("99_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<colonpair>"  :subid("99_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx422_tgt
     .local int rx422_pos
@@ -5244,7 +5244,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<colonpair>"  :subid("100_1275117591.97262") :method
+.sub "!PREFIX__term:sym<colonpair>"  :subid("100_1275160381.56318") :method
 .annotate 'line', 4
     $P424 = self."!PREFIX__!subrule"("colonpair", "")
     new $P425, "ResizablePMCArray"
@@ -5254,7 +5254,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<variable>"  :subid("101_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<variable>"  :subid("101_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx428_tgt
     .local int rx428_pos
@@ -5312,7 +5312,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<variable>"  :subid("102_1275117591.97262") :method
+.sub "!PREFIX__term:sym<variable>"  :subid("102_1275160381.56318") :method
 .annotate 'line', 4
     $P430 = self."!PREFIX__!subrule"("variable", "")
     new $P431, "ResizablePMCArray"
@@ -5322,7 +5322,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<package_declarator>"  :subid("103_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<package_declarator>"  :subid("103_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx434_tgt
     .local int rx434_pos
@@ -5380,7 +5380,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<package_declarator>"  :subid("104_1275117591.97262") :method
+.sub "!PREFIX__term:sym<package_declarator>"  :subid("104_1275160381.56318") :method
 .annotate 'line', 4
     $P436 = self."!PREFIX__!subrule"("package_declarator", "")
     new $P437, "ResizablePMCArray"
@@ -5390,7 +5390,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<scope_declarator>"  :subid("105_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<scope_declarator>"  :subid("105_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx440_tgt
     .local int rx440_pos
@@ -5448,7 +5448,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<scope_declarator>"  :subid("106_1275117591.97262") :method
+.sub "!PREFIX__term:sym<scope_declarator>"  :subid("106_1275160381.56318") :method
 .annotate 'line', 4
     $P442 = self."!PREFIX__!subrule"("scope_declarator", "")
     new $P443, "ResizablePMCArray"
@@ -5458,7 +5458,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<routine_declarator>"  :subid("107_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<routine_declarator>"  :subid("107_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx446_tgt
     .local int rx446_pos
@@ -5516,7 +5516,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<routine_declarator>"  :subid("108_1275117591.97262") :method
+.sub "!PREFIX__term:sym<routine_declarator>"  :subid("108_1275160381.56318") :method
 .annotate 'line', 4
     $P448 = self."!PREFIX__!subrule"("routine_declarator", "")
     new $P449, "ResizablePMCArray"
@@ -5526,7 +5526,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<regex_declarator>"  :subid("109_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<regex_declarator>"  :subid("109_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx452_tgt
     .local int rx452_pos
@@ -5584,7 +5584,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<regex_declarator>"  :subid("110_1275117591.97262") :method
+.sub "!PREFIX__term:sym<regex_declarator>"  :subid("110_1275160381.56318") :method
 .annotate 'line', 4
     $P454 = self."!PREFIX__!subrule"("regex_declarator", "")
     new $P455, "ResizablePMCArray"
@@ -5594,7 +5594,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<statement_prefix>"  :subid("111_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<statement_prefix>"  :subid("111_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx458_tgt
     .local int rx458_pos
@@ -5652,7 +5652,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<statement_prefix>"  :subid("112_1275117591.97262") :method
+.sub "!PREFIX__term:sym<statement_prefix>"  :subid("112_1275160381.56318") :method
 .annotate 'line', 4
     $P460 = self."!PREFIX__!subrule"("statement_prefix", "")
     new $P461, "ResizablePMCArray"
@@ -5662,7 +5662,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<lambda>"  :subid("113_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<lambda>"  :subid("113_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx464_tgt
     .local int rx464_pos
@@ -5724,7 +5724,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<lambda>"  :subid("114_1275117591.97262") :method
+.sub "!PREFIX__term:sym<lambda>"  :subid("114_1275160381.56318") :method
 .annotate 'line', 4
     new $P466, "ResizablePMCArray"
     push $P466, ""
@@ -5733,7 +5733,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "fatarrow"  :subid("115_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "fatarrow"  :subid("115_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx469_tgt
     .local int rx469_pos
@@ -5826,7 +5826,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__fatarrow"  :subid("116_1275117591.97262") :method
+.sub "!PREFIX__fatarrow"  :subid("116_1275160381.56318") :method
 .annotate 'line', 4
     $P471 = self."!PREFIX__!subrule"("key", "")
     new $P472, "ResizablePMCArray"
@@ -5836,7 +5836,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "colonpair"  :subid("117_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "colonpair"  :subid("117_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx477_tgt
     .local int rx477_pos
@@ -5965,7 +5965,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__colonpair"  :subid("118_1275117591.97262") :method
+.sub "!PREFIX__colonpair"  :subid("118_1275160381.56318") :method
 .annotate 'line', 4
     $P479 = self."!PREFIX__!subrule"("circumfix", ":")
     $P480 = self."!PREFIX__!subrule"("identifier", ":")
@@ -5979,7 +5979,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "variable"  :subid("119_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "variable"  :subid("119_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx489_tgt
     .local int rx489_pos
@@ -6134,7 +6134,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__variable"  :subid("120_1275117591.97262") :method
+.sub "!PREFIX__variable"  :subid("120_1275160381.56318") :method
 .annotate 'line', 4
     $P491 = self."!PREFIX__!subrule"("sigil", "")
     $P492 = self."!PREFIX__!subrule"("sigil", "")
@@ -6149,7 +6149,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "sigil"  :subid("121_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "sigil"  :subid("121_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx501_tgt
     .local int rx501_pos
@@ -6207,7 +6207,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__sigil"  :subid("122_1275117591.97262") :method
+.sub "!PREFIX__sigil"  :subid("122_1275160381.56318") :method
 .annotate 'line', 4
     new $P503, "ResizablePMCArray"
     push $P503, "&"
@@ -6219,7 +6219,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "twigil"  :subid("123_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "twigil"  :subid("123_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx506_tgt
     .local int rx506_pos
@@ -6277,7 +6277,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__twigil"  :subid("124_1275117591.97262") :method
+.sub "!PREFIX__twigil"  :subid("124_1275160381.56318") :method
 .annotate 'line', 4
     new $P508, "ResizablePMCArray"
     push $P508, "?"
@@ -6288,7 +6288,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "package_declarator"  :subid("125_1275117591.97262") :method
+.sub "package_declarator"  :subid("125_1275160381.56318") :method
 .annotate 'line', 256
     $P511 = self."!protoregex"("package_declarator")
     .return ($P511)
@@ -6296,7 +6296,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__package_declarator"  :subid("126_1275117591.97262") :method
+.sub "!PREFIX__package_declarator"  :subid("126_1275160381.56318") :method
 .annotate 'line', 256
     $P513 = self."!PREFIX__!protoregex"("package_declarator")
     .return ($P513)
@@ -6304,7 +6304,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "package_declarator:sym<module>"  :subid("127_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "package_declarator:sym<module>"  :subid("127_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx515_tgt
     .local int rx515_pos
@@ -6383,7 +6383,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__package_declarator:sym<module>"  :subid("128_1275117591.97262") :method
+.sub "!PREFIX__package_declarator:sym<module>"  :subid("128_1275160381.56318") :method
 .annotate 'line', 4
     $P517 = self."!PREFIX__!subrule"("package_def", "module")
     new $P518, "ResizablePMCArray"
@@ -6393,7 +6393,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "package_declarator:sym<class>"  :subid("129_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "package_declarator:sym<class>"  :subid("129_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx522_tgt
     .local int rx522_pos
@@ -6485,7 +6485,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__package_declarator:sym<class>"  :subid("130_1275117591.97262") :method
+.sub "!PREFIX__package_declarator:sym<class>"  :subid("130_1275160381.56318") :method
 .annotate 'line', 4
     $P524 = self."!PREFIX__!subrule"("package_def", "grammar")
     $P525 = self."!PREFIX__!subrule"("package_def", "class")
@@ -6497,7 +6497,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "package_def"  :subid("131_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "package_def"  :subid("131_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx531_tgt
     .local int rx531_pos
@@ -6701,7 +6701,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__package_def"  :subid("132_1275117591.97262") :method
+.sub "!PREFIX__package_def"  :subid("132_1275160381.56318") :method
 .annotate 'line', 4
     new $P533, "ResizablePMCArray"
     push $P533, ""
@@ -6710,7 +6710,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "scope_declarator"  :subid("133_1275117591.97262") :method
+.sub "scope_declarator"  :subid("133_1275160381.56318") :method
 .annotate 'line', 270
     $P554 = self."!protoregex"("scope_declarator")
     .return ($P554)
@@ -6718,7 +6718,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__scope_declarator"  :subid("134_1275117591.97262") :method
+.sub "!PREFIX__scope_declarator"  :subid("134_1275160381.56318") :method
 .annotate 'line', 270
     $P556 = self."!PREFIX__!protoregex"("scope_declarator")
     .return ($P556)
@@ -6726,7 +6726,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "scope_declarator:sym<my>"  :subid("135_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "scope_declarator:sym<my>"  :subid("135_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx558_tgt
     .local int rx558_pos
@@ -6805,7 +6805,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__scope_declarator:sym<my>"  :subid("136_1275117591.97262") :method
+.sub "!PREFIX__scope_declarator:sym<my>"  :subid("136_1275160381.56318") :method
 .annotate 'line', 4
     $P560 = self."!PREFIX__!subrule"("scoped", "my")
     new $P561, "ResizablePMCArray"
@@ -6815,7 +6815,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "scope_declarator:sym<our>"  :subid("137_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "scope_declarator:sym<our>"  :subid("137_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx565_tgt
     .local int rx565_pos
@@ -6894,7 +6894,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__scope_declarator:sym<our>"  :subid("138_1275117591.97262") :method
+.sub "!PREFIX__scope_declarator:sym<our>"  :subid("138_1275160381.56318") :method
 .annotate 'line', 4
     $P567 = self."!PREFIX__!subrule"("scoped", "our")
     new $P568, "ResizablePMCArray"
@@ -6904,7 +6904,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "scope_declarator:sym<has>"  :subid("139_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "scope_declarator:sym<has>"  :subid("139_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx572_tgt
     .local int rx572_pos
@@ -6983,7 +6983,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__scope_declarator:sym<has>"  :subid("140_1275117591.97262") :method
+.sub "!PREFIX__scope_declarator:sym<has>"  :subid("140_1275160381.56318") :method
 .annotate 'line', 4
     $P574 = self."!PREFIX__!subrule"("scoped", "has")
     new $P575, "ResizablePMCArray"
@@ -6993,7 +6993,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "scoped"  :subid("141_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "scoped"  :subid("141_1275160381.56318") :method :outer("11_1275160381.56318")
     .param pmc param_579
 .annotate 'line', 275
     .lex "$*SCOPE", param_579
@@ -7111,7 +7111,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__scoped"  :subid("142_1275117591.97262") :method
+.sub "!PREFIX__scoped"  :subid("142_1275160381.56318") :method
 .annotate 'line', 4
     new $P582, "ResizablePMCArray"
     push $P582, ""
@@ -7121,7 +7121,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "typename"  :subid("143_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "typename"  :subid("143_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx593_tgt
     .local int rx593_pos
@@ -7179,7 +7179,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__typename"  :subid("144_1275117591.97262") :method
+.sub "!PREFIX__typename"  :subid("144_1275160381.56318") :method
 .annotate 'line', 4
     $P595 = self."!PREFIX__!subrule"("name", "")
     new $P596, "ResizablePMCArray"
@@ -7189,7 +7189,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "declarator"  :subid("145_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "declarator"  :subid("145_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx599_tgt
     .local int rx599_pos
@@ -7263,7 +7263,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__declarator"  :subid("146_1275117591.97262") :method
+.sub "!PREFIX__declarator"  :subid("146_1275160381.56318") :method
 .annotate 'line', 4
     $P601 = self."!PREFIX__!subrule"("routine_declarator", "")
     $P602 = self."!PREFIX__!subrule"("variable_declarator", "")
@@ -7275,7 +7275,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "variable_declarator"  :subid("147_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "variable_declarator"  :subid("147_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx607_tgt
     .local int rx607_pos
@@ -7333,7 +7333,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__variable_declarator"  :subid("148_1275117591.97262") :method
+.sub "!PREFIX__variable_declarator"  :subid("148_1275160381.56318") :method
 .annotate 'line', 4
     $P609 = self."!PREFIX__!subrule"("variable", "")
     new $P610, "ResizablePMCArray"
@@ -7343,7 +7343,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "routine_declarator"  :subid("149_1275117591.97262") :method
+.sub "routine_declarator"  :subid("149_1275160381.56318") :method
 .annotate 'line', 289
     $P613 = self."!protoregex"("routine_declarator")
     .return ($P613)
@@ -7351,7 +7351,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__routine_declarator"  :subid("150_1275117591.97262") :method
+.sub "!PREFIX__routine_declarator"  :subid("150_1275160381.56318") :method
 .annotate 'line', 289
     $P615 = self."!PREFIX__!protoregex"("routine_declarator")
     .return ($P615)
@@ -7359,7 +7359,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "routine_declarator:sym<sub>"  :subid("151_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "routine_declarator:sym<sub>"  :subid("151_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx617_tgt
     .local int rx617_pos
@@ -7438,7 +7438,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__routine_declarator:sym<sub>"  :subid("152_1275117591.97262") :method
+.sub "!PREFIX__routine_declarator:sym<sub>"  :subid("152_1275160381.56318") :method
 .annotate 'line', 4
     $P619 = self."!PREFIX__!subrule"("routine_def", "sub")
     new $P620, "ResizablePMCArray"
@@ -7448,7 +7448,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "routine_declarator:sym<method>"  :subid("153_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "routine_declarator:sym<method>"  :subid("153_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx624_tgt
     .local int rx624_pos
@@ -7527,7 +7527,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__routine_declarator:sym<method>"  :subid("154_1275117591.97262") :method
+.sub "!PREFIX__routine_declarator:sym<method>"  :subid("154_1275160381.56318") :method
 .annotate 'line', 4
     $P626 = self."!PREFIX__!subrule"("method_def", "method")
     new $P627, "ResizablePMCArray"
@@ -7537,7 +7537,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "routine_def"  :subid("155_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "routine_def"  :subid("155_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx631_tgt
     .local int rx631_pos
@@ -7547,7 +7547,7 @@
     .local pmc rx631_cur
     (rx631_cur, rx631_pos, rx631_tgt) = self."!cursor_start"()
     rx631_cur."!cursor_debug"("START ", "routine_def")
-    rx631_cur."!cursor_caparray"("sigil", "deflongname")
+    rx631_cur."!cursor_caparray"("deflongname", "sigil")
     .lex unicode:"$\x{a2}", rx631_cur
     .local pmc match
     .lex "$/", match
@@ -7744,7 +7744,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__routine_def"  :subid("156_1275117591.97262") :method
+.sub "!PREFIX__routine_def"  :subid("156_1275160381.56318") :method
 .annotate 'line', 4
     new $P633, "ResizablePMCArray"
     push $P633, ""
@@ -7753,7 +7753,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "method_def"  :subid("157_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "method_def"  :subid("157_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx655_tgt
     .local int rx655_pos
@@ -7923,7 +7923,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__method_def"  :subid("158_1275117591.97262") :method
+.sub "!PREFIX__method_def"  :subid("158_1275160381.56318") :method
 .annotate 'line', 4
     new $P657, "ResizablePMCArray"
     push $P657, ""
@@ -7932,7 +7932,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "signature"  :subid("159_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "signature"  :subid("159_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx674_tgt
     .local int rx674_pos
@@ -8022,7 +8022,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__signature"  :subid("160_1275117591.97262") :method
+.sub "!PREFIX__signature"  :subid("160_1275160381.56318") :method
 .annotate 'line', 4
     new $P676, "ResizablePMCArray"
     push $P676, ""
@@ -8031,7 +8031,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "parameter"  :subid("161_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "parameter"  :subid("161_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx683_tgt
     .local int rx683_pos
@@ -8213,7 +8213,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__parameter"  :subid("162_1275117591.97262") :method
+.sub "!PREFIX__parameter"  :subid("162_1275160381.56318") :method
 .annotate 'line', 4
     new $P685, "ResizablePMCArray"
     push $P685, ""
@@ -8222,7 +8222,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "param_var"  :subid("163_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "param_var"  :subid("163_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx697_tgt
     .local int rx697_pos
@@ -8330,7 +8330,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__param_var"  :subid("164_1275117591.97262") :method
+.sub "!PREFIX__param_var"  :subid("164_1275160381.56318") :method
 .annotate 'line', 4
     $P699 = self."!PREFIX__!subrule"("sigil", "")
     new $P700, "ResizablePMCArray"
@@ -8340,7 +8340,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "named_param"  :subid("165_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "named_param"  :subid("165_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx707_tgt
     .local int rx707_pos
@@ -8406,7 +8406,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__named_param"  :subid("166_1275117591.97262") :method
+.sub "!PREFIX__named_param"  :subid("166_1275160381.56318") :method
 .annotate 'line', 4
     $P709 = self."!PREFIX__!subrule"("param_var", ":")
     new $P710, "ResizablePMCArray"
@@ -8416,7 +8416,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "default_value"  :subid("167_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "default_value"  :subid("167_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx713_tgt
     .local int rx713_pos
@@ -8496,7 +8496,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__default_value"  :subid("168_1275117591.97262") :method
+.sub "!PREFIX__default_value"  :subid("168_1275160381.56318") :method
 .annotate 'line', 4
     new $P715, "ResizablePMCArray"
     push $P715, ""
@@ -8505,7 +8505,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "regex_declarator"  :subid("169_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "regex_declarator"  :subid("169_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx721_tgt
     .local int rx721_pos
@@ -8906,7 +8906,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__regex_declarator"  :subid("170_1275117591.97262") :method
+.sub "!PREFIX__regex_declarator"  :subid("170_1275160381.56318") :method
 .annotate 'line', 4
     new $P723, "ResizablePMCArray"
     push $P723, ""
@@ -8915,7 +8915,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "dotty"  :subid("171_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "dotty"  :subid("171_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx758_tgt
     .local int rx758_pos
@@ -9071,7 +9071,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__dotty"  :subid("172_1275117591.97262") :method
+.sub "!PREFIX__dotty"  :subid("172_1275160381.56318") :method
 .annotate 'line', 4
     $P760 = self."!PREFIX__!subrule"("longname=identifier", ".")
     new $P761, "ResizablePMCArray"
@@ -9083,7 +9083,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term"  :subid("173_1275117591.97262") :method
+.sub "term"  :subid("173_1275160381.56318") :method
 .annotate 'line', 362
     $P769 = self."!protoregex"("term")
     .return ($P769)
@@ -9091,7 +9091,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term"  :subid("174_1275117591.97262") :method
+.sub "!PREFIX__term"  :subid("174_1275160381.56318") :method
 .annotate 'line', 362
     $P771 = self."!PREFIX__!protoregex"("term")
     .return ($P771)
@@ -9099,7 +9099,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<self>"  :subid("175_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<self>"  :subid("175_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx773_tgt
     .local int rx773_pos
@@ -9179,7 +9179,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<self>"  :subid("176_1275117591.97262") :method
+.sub "!PREFIX__term:sym<self>"  :subid("176_1275160381.56318") :method
 .annotate 'line', 4
     new $P775, "ResizablePMCArray"
     push $P775, "self"
@@ -9188,7 +9188,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<identifier>"  :subid("177_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<identifier>"  :subid("177_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx779_tgt
     .local int rx779_pos
@@ -9260,7 +9260,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<identifier>"  :subid("178_1275117591.97262") :method
+.sub "!PREFIX__term:sym<identifier>"  :subid("178_1275160381.56318") :method
 .annotate 'line', 4
     $P781 = self."!PREFIX__!subrule"("identifier", "")
     new $P782, "ResizablePMCArray"
@@ -9270,7 +9270,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<name>"  :subid("179_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<name>"  :subid("179_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx785_tgt
     .local int rx785_pos
@@ -9343,7 +9343,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<name>"  :subid("180_1275117591.97262") :method
+.sub "!PREFIX__term:sym<name>"  :subid("180_1275160381.56318") :method
 .annotate 'line', 4
     $P787 = self."!PREFIX__!subrule"("name", "")
     new $P788, "ResizablePMCArray"
@@ -9353,7 +9353,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<pir::op>"  :subid("181_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<pir::op>"  :subid("181_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx793_tgt
     .local int rx793_pos
@@ -9446,7 +9446,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<pir::op>"  :subid("182_1275117591.97262") :method
+.sub "!PREFIX__term:sym<pir::op>"  :subid("182_1275160381.56318") :method
 .annotate 'line', 4
     new $P795, "ResizablePMCArray"
     push $P795, "pir::"
@@ -9455,7 +9455,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "args"  :subid("183_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "args"  :subid("183_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx801_tgt
     .local int rx801_pos
@@ -9527,7 +9527,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__args"  :subid("184_1275117591.97262") :method
+.sub "!PREFIX__args"  :subid("184_1275160381.56318") :method
 .annotate 'line', 4
     $P803 = self."!PREFIX__!subrule"("arglist", "(")
     new $P804, "ResizablePMCArray"
@@ -9537,7 +9537,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "arglist"  :subid("185_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "arglist"  :subid("185_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx807_tgt
     .local int rx807_pos
@@ -9609,7 +9609,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__arglist"  :subid("186_1275117591.97262") :method
+.sub "!PREFIX__arglist"  :subid("186_1275160381.56318") :method
 .annotate 'line', 4
     $P809 = self."!PREFIX__!subrule"("", "")
     new $P810, "ResizablePMCArray"
@@ -9619,7 +9619,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<value>"  :subid("187_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<value>"  :subid("187_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx814_tgt
     .local int rx814_pos
@@ -9677,7 +9677,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<value>"  :subid("188_1275117591.97262") :method
+.sub "!PREFIX__term:sym<value>"  :subid("188_1275160381.56318") :method
 .annotate 'line', 4
     $P816 = self."!PREFIX__!subrule"("value", "")
     new $P817, "ResizablePMCArray"
@@ -9687,7 +9687,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "value"  :subid("189_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "value"  :subid("189_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx820_tgt
     .local int rx820_pos
@@ -9761,7 +9761,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__value"  :subid("190_1275117591.97262") :method
+.sub "!PREFIX__value"  :subid("190_1275160381.56318") :method
 .annotate 'line', 4
     $P822 = self."!PREFIX__!subrule"("number", "")
     $P823 = self."!PREFIX__!subrule"("quote", "")
@@ -9773,7 +9773,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "number"  :subid("191_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "number"  :subid("191_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx828_tgt
     .local int rx828_pos
@@ -9873,7 +9873,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__number"  :subid("192_1275117591.97262") :method
+.sub "!PREFIX__number"  :subid("192_1275160381.56318") :method
 .annotate 'line', 4
     new $P830, "ResizablePMCArray"
     push $P830, ""
@@ -9882,7 +9882,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote"  :subid("193_1275117591.97262") :method
+.sub "quote"  :subid("193_1275160381.56318") :method
 .annotate 'line', 403
     $P837 = self."!protoregex"("quote")
     .return ($P837)
@@ -9890,7 +9890,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote"  :subid("194_1275117591.97262") :method
+.sub "!PREFIX__quote"  :subid("194_1275160381.56318") :method
 .annotate 'line', 403
     $P839 = self."!PREFIX__!protoregex"("quote")
     .return ($P839)
@@ -9898,7 +9898,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<apos>"  :subid("195_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<apos>"  :subid("195_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx841_tgt
     .local int rx841_pos
@@ -9962,7 +9962,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<apos>"  :subid("196_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<apos>"  :subid("196_1275160381.56318") :method
 .annotate 'line', 4
     new $P843, "ResizablePMCArray"
     push $P843, "'"
@@ -9971,7 +9971,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<dblq>"  :subid("197_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<dblq>"  :subid("197_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx846_tgt
     .local int rx846_pos
@@ -10035,7 +10035,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<dblq>"  :subid("198_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<dblq>"  :subid("198_1275160381.56318") :method
 .annotate 'line', 4
     new $P848, "ResizablePMCArray"
     push $P848, "\""
@@ -10044,7 +10044,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<q>"  :subid("199_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<q>"  :subid("199_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx851_tgt
     .local int rx851_pos
@@ -10128,7 +10128,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<q>"  :subid("200_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<q>"  :subid("200_1275160381.56318") :method
 .annotate 'line', 4
     $P853 = self."!PREFIX__!subrule"("", "q")
     new $P854, "ResizablePMCArray"
@@ -10138,7 +10138,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<qq>"  :subid("201_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<qq>"  :subid("201_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx857_tgt
     .local int rx857_pos
@@ -10222,7 +10222,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<qq>"  :subid("202_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<qq>"  :subid("202_1275160381.56318") :method
 .annotate 'line', 4
     $P859 = self."!PREFIX__!subrule"("", "qq")
     new $P860, "ResizablePMCArray"
@@ -10232,7 +10232,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<Q>"  :subid("203_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<Q>"  :subid("203_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx863_tgt
     .local int rx863_pos
@@ -10316,7 +10316,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<Q>"  :subid("204_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<Q>"  :subid("204_1275160381.56318") :method
 .annotate 'line', 4
     $P865 = self."!PREFIX__!subrule"("", "Q")
     new $P866, "ResizablePMCArray"
@@ -10326,7 +10326,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym<Q:PIR>"  :subid("205_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym<Q:PIR>"  :subid("205_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx869_tgt
     .local int rx869_pos
@@ -10396,7 +10396,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym<Q:PIR>"  :subid("206_1275117591.97262") :method
+.sub "!PREFIX__quote:sym<Q:PIR>"  :subid("206_1275160381.56318") :method
 .annotate 'line', 4
     $P871 = self."!PREFIX__!subrule"("", "Q:PIR")
     new $P872, "ResizablePMCArray"
@@ -10406,7 +10406,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote:sym</ />"  :subid("207_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote:sym</ />"  :subid("207_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx875_tgt
     .local int rx875_pos
@@ -10491,7 +10491,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote:sym</ />"  :subid("208_1275117591.97262") :method
+.sub "!PREFIX__quote:sym</ />"  :subid("208_1275160381.56318") :method
 .annotate 'line', 4
     $P877 = self."!PREFIX__!subrule"("", "/")
     new $P878, "ResizablePMCArray"
@@ -10501,7 +10501,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote_escape:sym<$>"  :subid("209_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote_escape:sym<$>"  :subid("209_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx881_tgt
     .local int rx881_pos
@@ -10569,7 +10569,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<$>"  :subid("210_1275117591.97262") :method
+.sub "!PREFIX__quote_escape:sym<$>"  :subid("210_1275160381.56318") :method
 .annotate 'line', 4
     new $P883, "ResizablePMCArray"
     push $P883, "$"
@@ -10578,7 +10578,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote_escape:sym<{ }>"  :subid("211_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote_escape:sym<{ }>"  :subid("211_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx886_tgt
     .local int rx886_pos
@@ -10646,7 +10646,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<{ }>"  :subid("212_1275117591.97262") :method
+.sub "!PREFIX__quote_escape:sym<{ }>"  :subid("212_1275160381.56318") :method
 .annotate 'line', 4
     new $P888, "ResizablePMCArray"
     push $P888, "{"
@@ -10655,7 +10655,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "quote_escape:sym<esc>"  :subid("213_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "quote_escape:sym<esc>"  :subid("213_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx891_tgt
     .local int rx891_pos
@@ -10717,7 +10717,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__quote_escape:sym<esc>"  :subid("214_1275117591.97262") :method
+.sub "!PREFIX__quote_escape:sym<esc>"  :subid("214_1275160381.56318") :method
 .annotate 'line', 4
     new $P893, "ResizablePMCArray"
     push $P893, "\\e"
@@ -10726,7 +10726,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "circumfix:sym<( )>"  :subid("215_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "circumfix:sym<( )>"  :subid("215_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx896_tgt
     .local int rx896_pos
@@ -10810,7 +10810,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__circumfix:sym<( )>"  :subid("216_1275117591.97262") :method
+.sub "!PREFIX__circumfix:sym<( )>"  :subid("216_1275160381.56318") :method
 .annotate 'line', 4
     $P898 = self."!PREFIX__!subrule"("", "(")
     new $P899, "ResizablePMCArray"
@@ -10820,7 +10820,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "circumfix:sym<[ ]>"  :subid("217_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "circumfix:sym<[ ]>"  :subid("217_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx904_tgt
     .local int rx904_pos
@@ -10904,7 +10904,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__circumfix:sym<[ ]>"  :subid("218_1275117591.97262") :method
+.sub "!PREFIX__circumfix:sym<[ ]>"  :subid("218_1275160381.56318") :method
 .annotate 'line', 4
     $P906 = self."!PREFIX__!subrule"("", "[")
     new $P907, "ResizablePMCArray"
@@ -10914,7 +10914,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "circumfix:sym<ang>"  :subid("219_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "circumfix:sym<ang>"  :subid("219_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx912_tgt
     .local int rx912_pos
@@ -10978,7 +10978,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__circumfix:sym<ang>"  :subid("220_1275117591.97262") :method
+.sub "!PREFIX__circumfix:sym<ang>"  :subid("220_1275160381.56318") :method
 .annotate 'line', 4
     new $P914, "ResizablePMCArray"
     push $P914, "<"
@@ -10987,7 +10987,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub unicode:"circumfix:sym<\x{ab} \x{bb}>"  :subid("221_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub unicode:"circumfix:sym<\x{ab} \x{bb}>"  :subid("221_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx917_tgt
     .local int rx917_pos
@@ -11051,7 +11051,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub unicode:"!PREFIX__circumfix:sym<\x{ab} \x{bb}>"  :subid("222_1275117591.97262") :method
+.sub unicode:"!PREFIX__circumfix:sym<\x{ab} \x{bb}>"  :subid("222_1275160381.56318") :method
 .annotate 'line', 4
     new $P919, "ResizablePMCArray"
     push $P919, unicode:"\x{ab}"
@@ -11060,7 +11060,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "circumfix:sym<{ }>"  :subid("223_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "circumfix:sym<{ }>"  :subid("223_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx922_tgt
     .local int rx922_pos
@@ -11124,7 +11124,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__circumfix:sym<{ }>"  :subid("224_1275117591.97262") :method
+.sub "!PREFIX__circumfix:sym<{ }>"  :subid("224_1275160381.56318") :method
 .annotate 'line', 4
     new $P924, "ResizablePMCArray"
     push $P924, "{"
@@ -11133,7 +11133,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "circumfix:sym<sigil>"  :subid("225_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "circumfix:sym<sigil>"  :subid("225_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx927_tgt
     .local int rx927_pos
@@ -11223,7 +11223,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__circumfix:sym<sigil>"  :subid("226_1275117591.97262") :method
+.sub "!PREFIX__circumfix:sym<sigil>"  :subid("226_1275160381.56318") :method
 .annotate 'line', 4
     $P929 = self."!PREFIX__!subrule"("sigil", "")
     new $P930, "ResizablePMCArray"
@@ -11233,7 +11233,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "semilist"  :subid("227_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "semilist"  :subid("227_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 4
     .local string rx935_tgt
     .local int rx935_pos
@@ -11301,7 +11301,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__semilist"  :subid("228_1275117591.97262") :method
+.sub "!PREFIX__semilist"  :subid("228_1275160381.56318") :method
 .annotate 'line', 4
     new $P937, "ResizablePMCArray"
     push $P937, ""
@@ -11310,7 +11310,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infixish"  :subid("229_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infixish"  :subid("229_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx942_tgt
     .local int rx942_pos
@@ -11372,7 +11372,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infixish"  :subid("230_1275117591.97262") :method
+.sub "!PREFIX__infixish"  :subid("230_1275160381.56318") :method
 .annotate 'line', 433
     new $P944, "ResizablePMCArray"
     push $P944, ""
@@ -11381,7 +11381,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infixstopper"  :subid("231_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infixstopper"  :subid("231_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx947_tgt
     .local int rx947_pos
@@ -11436,7 +11436,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infixstopper"  :subid("232_1275117591.97262") :method
+.sub "!PREFIX__infixstopper"  :subid("232_1275160381.56318") :method
 .annotate 'line', 433
     new $P949, "ResizablePMCArray"
     push $P949, ""
@@ -11445,7 +11445,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postcircumfix:sym<[ ]>"  :subid("233_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postcircumfix:sym<[ ]>"  :subid("233_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx952_tgt
     .local int rx952_pos
@@ -11531,7 +11531,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postcircumfix:sym<[ ]>"  :subid("234_1275117591.97262") :method
+.sub "!PREFIX__postcircumfix:sym<[ ]>"  :subid("234_1275160381.56318") :method
 .annotate 'line', 433
     $P954 = self."!PREFIX__!subrule"("", "[")
     new $P955, "ResizablePMCArray"
@@ -11541,7 +11541,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postcircumfix:sym<{ }>"  :subid("235_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postcircumfix:sym<{ }>"  :subid("235_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx958_tgt
     .local int rx958_pos
@@ -11627,7 +11627,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postcircumfix:sym<{ }>"  :subid("236_1275117591.97262") :method
+.sub "!PREFIX__postcircumfix:sym<{ }>"  :subid("236_1275160381.56318") :method
 .annotate 'line', 433
     $P960 = self."!PREFIX__!subrule"("", "{")
     new $P961, "ResizablePMCArray"
@@ -11637,7 +11637,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postcircumfix:sym<ang>"  :subid("237_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postcircumfix:sym<ang>"  :subid("237_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx964_tgt
     .local int rx964_pos
@@ -11710,7 +11710,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postcircumfix:sym<ang>"  :subid("238_1275117591.97262") :method
+.sub "!PREFIX__postcircumfix:sym<ang>"  :subid("238_1275160381.56318") :method
 .annotate 'line', 433
     new $P966, "ResizablePMCArray"
     push $P966, "<"
@@ -11719,7 +11719,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postcircumfix:sym<( )>"  :subid("239_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postcircumfix:sym<( )>"  :subid("239_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx969_tgt
     .local int rx969_pos
@@ -11805,7 +11805,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postcircumfix:sym<( )>"  :subid("240_1275117591.97262") :method
+.sub "!PREFIX__postcircumfix:sym<( )>"  :subid("240_1275160381.56318") :method
 .annotate 'line', 433
     $P971 = self."!PREFIX__!subrule"("", "(")
     new $P972, "ResizablePMCArray"
@@ -11815,7 +11815,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postfix:sym<.>"  :subid("241_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postfix:sym<.>"  :subid("241_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx975_tgt
     .local int rx975_pos
@@ -11880,7 +11880,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postfix:sym<.>"  :subid("242_1275117591.97262") :method
+.sub "!PREFIX__postfix:sym<.>"  :subid("242_1275160381.56318") :method
 .annotate 'line', 433
     $P977 = self."!PREFIX__!subrule"("dotty", "")
     new $P978, "ResizablePMCArray"
@@ -11890,7 +11890,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<++>"  :subid("243_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<++>"  :subid("243_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx981_tgt
     .local int rx981_pos
@@ -11969,7 +11969,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<++>"  :subid("244_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<++>"  :subid("244_1275160381.56318") :method
 .annotate 'line', 433
     $P983 = self."!PREFIX__!subrule"("O", "++")
     new $P984, "ResizablePMCArray"
@@ -11979,7 +11979,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<-->"  :subid("245_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<-->"  :subid("245_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx988_tgt
     .local int rx988_pos
@@ -12058,7 +12058,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<-->"  :subid("246_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<-->"  :subid("246_1275160381.56318") :method
 .annotate 'line', 433
     $P990 = self."!PREFIX__!subrule"("O", "--")
     new $P991, "ResizablePMCArray"
@@ -12068,7 +12068,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postfix:sym<++>"  :subid("247_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postfix:sym<++>"  :subid("247_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx995_tgt
     .local int rx995_pos
@@ -12147,7 +12147,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postfix:sym<++>"  :subid("248_1275117591.97262") :method
+.sub "!PREFIX__postfix:sym<++>"  :subid("248_1275160381.56318") :method
 .annotate 'line', 433
     $P997 = self."!PREFIX__!subrule"("O", "++")
     new $P998, "ResizablePMCArray"
@@ -12157,7 +12157,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "postfix:sym<-->"  :subid("249_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "postfix:sym<-->"  :subid("249_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1002_tgt
     .local int rx1002_pos
@@ -12236,7 +12236,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__postfix:sym<-->"  :subid("250_1275117591.97262") :method
+.sub "!PREFIX__postfix:sym<-->"  :subid("250_1275160381.56318") :method
 .annotate 'line', 433
     $P1004 = self."!PREFIX__!subrule"("O", "--")
     new $P1005, "ResizablePMCArray"
@@ -12246,7 +12246,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<**>"  :subid("251_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<**>"  :subid("251_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1009_tgt
     .local int rx1009_pos
@@ -12325,7 +12325,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<**>"  :subid("252_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<**>"  :subid("252_1275160381.56318") :method
 .annotate 'line', 433
     $P1011 = self."!PREFIX__!subrule"("O", "**")
     new $P1012, "ResizablePMCArray"
@@ -12335,7 +12335,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<+>"  :subid("253_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<+>"  :subid("253_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1016_tgt
     .local int rx1016_pos
@@ -12414,7 +12414,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<+>"  :subid("254_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<+>"  :subid("254_1275160381.56318") :method
 .annotate 'line', 433
     $P1018 = self."!PREFIX__!subrule"("O", "+")
     new $P1019, "ResizablePMCArray"
@@ -12424,7 +12424,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<~>"  :subid("255_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<~>"  :subid("255_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1023_tgt
     .local int rx1023_pos
@@ -12503,7 +12503,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<~>"  :subid("256_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<~>"  :subid("256_1275160381.56318") :method
 .annotate 'line', 433
     $P1025 = self."!PREFIX__!subrule"("O", "~")
     new $P1026, "ResizablePMCArray"
@@ -12513,7 +12513,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<->"  :subid("257_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<->"  :subid("257_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1030_tgt
     .local int rx1030_pos
@@ -12602,7 +12602,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<->"  :subid("258_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<->"  :subid("258_1275160381.56318") :method
 .annotate 'line', 433
     new $P1032, "ResizablePMCArray"
     push $P1032, "-"
@@ -12611,7 +12611,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<?>"  :subid("259_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<?>"  :subid("259_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1036_tgt
     .local int rx1036_pos
@@ -12690,7 +12690,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<?>"  :subid("260_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<?>"  :subid("260_1275160381.56318") :method
 .annotate 'line', 433
     $P1038 = self."!PREFIX__!subrule"("O", "?")
     new $P1039, "ResizablePMCArray"
@@ -12700,7 +12700,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<!>"  :subid("261_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<!>"  :subid("261_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1043_tgt
     .local int rx1043_pos
@@ -12779,7 +12779,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<!>"  :subid("262_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<!>"  :subid("262_1275160381.56318") :method
 .annotate 'line', 433
     $P1045 = self."!PREFIX__!subrule"("O", "!")
     new $P1046, "ResizablePMCArray"
@@ -12789,7 +12789,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<|>"  :subid("263_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<|>"  :subid("263_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1050_tgt
     .local int rx1050_pos
@@ -12868,7 +12868,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<|>"  :subid("264_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<|>"  :subid("264_1275160381.56318") :method
 .annotate 'line', 433
     $P1052 = self."!PREFIX__!subrule"("O", "|")
     new $P1053, "ResizablePMCArray"
@@ -12878,7 +12878,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<*>"  :subid("265_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<*>"  :subid("265_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1057_tgt
     .local int rx1057_pos
@@ -12957,7 +12957,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<*>"  :subid("266_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<*>"  :subid("266_1275160381.56318") :method
 .annotate 'line', 433
     $P1059 = self."!PREFIX__!subrule"("O", "*")
     new $P1060, "ResizablePMCArray"
@@ -12967,7 +12967,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym</>"  :subid("267_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym</>"  :subid("267_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1064_tgt
     .local int rx1064_pos
@@ -13046,7 +13046,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym</>"  :subid("268_1275117591.97262") :method
+.sub "!PREFIX__infix:sym</>"  :subid("268_1275160381.56318") :method
 .annotate 'line', 433
     $P1066 = self."!PREFIX__!subrule"("O", "/")
     new $P1067, "ResizablePMCArray"
@@ -13056,7 +13056,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<%>"  :subid("269_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<%>"  :subid("269_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1071_tgt
     .local int rx1071_pos
@@ -13135,7 +13135,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<%>"  :subid("270_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<%>"  :subid("270_1275160381.56318") :method
 .annotate 'line', 433
     $P1073 = self."!PREFIX__!subrule"("O", "%")
     new $P1074, "ResizablePMCArray"
@@ -13145,7 +13145,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<+>"  :subid("271_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<+>"  :subid("271_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1078_tgt
     .local int rx1078_pos
@@ -13224,7 +13224,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<+>"  :subid("272_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<+>"  :subid("272_1275160381.56318") :method
 .annotate 'line', 433
     $P1080 = self."!PREFIX__!subrule"("O", "+")
     new $P1081, "ResizablePMCArray"
@@ -13234,7 +13234,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<->"  :subid("273_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<->"  :subid("273_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1085_tgt
     .local int rx1085_pos
@@ -13313,7 +13313,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<->"  :subid("274_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<->"  :subid("274_1275160381.56318") :method
 .annotate 'line', 433
     $P1087 = self."!PREFIX__!subrule"("O", "-")
     new $P1088, "ResizablePMCArray"
@@ -13323,7 +13323,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<~>"  :subid("275_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<~>"  :subid("275_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1092_tgt
     .local int rx1092_pos
@@ -13402,7 +13402,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<~>"  :subid("276_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<~>"  :subid("276_1275160381.56318") :method
 .annotate 'line', 433
     $P1094 = self."!PREFIX__!subrule"("O", "~")
     new $P1095, "ResizablePMCArray"
@@ -13412,7 +13412,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<==>"  :subid("277_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<==>"  :subid("277_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1099_tgt
     .local int rx1099_pos
@@ -13491,7 +13491,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<==>"  :subid("278_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<==>"  :subid("278_1275160381.56318") :method
 .annotate 'line', 433
     $P1101 = self."!PREFIX__!subrule"("O", "==")
     new $P1102, "ResizablePMCArray"
@@ -13501,7 +13501,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<!=>"  :subid("279_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<!=>"  :subid("279_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1106_tgt
     .local int rx1106_pos
@@ -13580,7 +13580,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<!=>"  :subid("280_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<!=>"  :subid("280_1275160381.56318") :method
 .annotate 'line', 433
     $P1108 = self."!PREFIX__!subrule"("O", "!=")
     new $P1109, "ResizablePMCArray"
@@ -13590,7 +13590,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<<=>"  :subid("281_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<<=>"  :subid("281_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1113_tgt
     .local int rx1113_pos
@@ -13669,7 +13669,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<<=>"  :subid("282_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<<=>"  :subid("282_1275160381.56318") :method
 .annotate 'line', 433
     $P1115 = self."!PREFIX__!subrule"("O", "<=")
     new $P1116, "ResizablePMCArray"
@@ -13679,7 +13679,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<>=>"  :subid("283_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<>=>"  :subid("283_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1120_tgt
     .local int rx1120_pos
@@ -13758,7 +13758,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<>=>"  :subid("284_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<>=>"  :subid("284_1275160381.56318") :method
 .annotate 'line', 433
     $P1122 = self."!PREFIX__!subrule"("O", ">=")
     new $P1123, "ResizablePMCArray"
@@ -13768,7 +13768,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<<>"  :subid("285_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<<>"  :subid("285_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1127_tgt
     .local int rx1127_pos
@@ -13847,7 +13847,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<<>"  :subid("286_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<<>"  :subid("286_1275160381.56318") :method
 .annotate 'line', 433
     $P1129 = self."!PREFIX__!subrule"("O", "<")
     new $P1130, "ResizablePMCArray"
@@ -13857,7 +13857,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<>>"  :subid("287_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<>>"  :subid("287_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1134_tgt
     .local int rx1134_pos
@@ -13936,7 +13936,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<>>"  :subid("288_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<>>"  :subid("288_1275160381.56318") :method
 .annotate 'line', 433
     $P1136 = self."!PREFIX__!subrule"("O", ">")
     new $P1137, "ResizablePMCArray"
@@ -13946,7 +13946,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<eq>"  :subid("289_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<eq>"  :subid("289_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1141_tgt
     .local int rx1141_pos
@@ -14025,7 +14025,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<eq>"  :subid("290_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<eq>"  :subid("290_1275160381.56318") :method
 .annotate 'line', 433
     $P1143 = self."!PREFIX__!subrule"("O", "eq")
     new $P1144, "ResizablePMCArray"
@@ -14035,7 +14035,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<ne>"  :subid("291_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<ne>"  :subid("291_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1148_tgt
     .local int rx1148_pos
@@ -14114,7 +14114,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<ne>"  :subid("292_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<ne>"  :subid("292_1275160381.56318") :method
 .annotate 'line', 433
     $P1150 = self."!PREFIX__!subrule"("O", "ne")
     new $P1151, "ResizablePMCArray"
@@ -14124,7 +14124,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<le>"  :subid("293_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<le>"  :subid("293_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1155_tgt
     .local int rx1155_pos
@@ -14203,7 +14203,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<le>"  :subid("294_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<le>"  :subid("294_1275160381.56318") :method
 .annotate 'line', 433
     $P1157 = self."!PREFIX__!subrule"("O", "le")
     new $P1158, "ResizablePMCArray"
@@ -14213,7 +14213,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<ge>"  :subid("295_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<ge>"  :subid("295_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1162_tgt
     .local int rx1162_pos
@@ -14292,7 +14292,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<ge>"  :subid("296_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<ge>"  :subid("296_1275160381.56318") :method
 .annotate 'line', 433
     $P1164 = self."!PREFIX__!subrule"("O", "ge")
     new $P1165, "ResizablePMCArray"
@@ -14302,7 +14302,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<lt>"  :subid("297_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<lt>"  :subid("297_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1169_tgt
     .local int rx1169_pos
@@ -14381,7 +14381,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<lt>"  :subid("298_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<lt>"  :subid("298_1275160381.56318") :method
 .annotate 'line', 433
     $P1171 = self."!PREFIX__!subrule"("O", "lt")
     new $P1172, "ResizablePMCArray"
@@ -14391,7 +14391,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<gt>"  :subid("299_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<gt>"  :subid("299_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1176_tgt
     .local int rx1176_pos
@@ -14470,7 +14470,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<gt>"  :subid("300_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<gt>"  :subid("300_1275160381.56318") :method
 .annotate 'line', 433
     $P1178 = self."!PREFIX__!subrule"("O", "gt")
     new $P1179, "ResizablePMCArray"
@@ -14480,7 +14480,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<=:=>"  :subid("301_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<=:=>"  :subid("301_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1183_tgt
     .local int rx1183_pos
@@ -14559,7 +14559,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<=:=>"  :subid("302_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<=:=>"  :subid("302_1275160381.56318") :method
 .annotate 'line', 433
     $P1185 = self."!PREFIX__!subrule"("O", "=:=")
     new $P1186, "ResizablePMCArray"
@@ -14569,7 +14569,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<~~>"  :subid("303_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<~~>"  :subid("303_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1190_tgt
     .local int rx1190_pos
@@ -14648,7 +14648,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<~~>"  :subid("304_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<~~>"  :subid("304_1275160381.56318") :method
 .annotate 'line', 433
     $P1192 = self."!PREFIX__!subrule"("O", "~~")
     new $P1193, "ResizablePMCArray"
@@ -14658,7 +14658,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<&&>"  :subid("305_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<&&>"  :subid("305_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1197_tgt
     .local int rx1197_pos
@@ -14737,7 +14737,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<&&>"  :subid("306_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<&&>"  :subid("306_1275160381.56318") :method
 .annotate 'line', 433
     $P1199 = self."!PREFIX__!subrule"("O", "&&")
     new $P1200, "ResizablePMCArray"
@@ -14747,7 +14747,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<||>"  :subid("307_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<||>"  :subid("307_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1204_tgt
     .local int rx1204_pos
@@ -14826,7 +14826,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<||>"  :subid("308_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<||>"  :subid("308_1275160381.56318") :method
 .annotate 'line', 433
     $P1206 = self."!PREFIX__!subrule"("O", "||")
     new $P1207, "ResizablePMCArray"
@@ -14836,7 +14836,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<//>"  :subid("309_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<//>"  :subid("309_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1211_tgt
     .local int rx1211_pos
@@ -14915,7 +14915,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<//>"  :subid("310_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<//>"  :subid("310_1275160381.56318") :method
 .annotate 'line', 433
     $P1213 = self."!PREFIX__!subrule"("O", "//")
     new $P1214, "ResizablePMCArray"
@@ -14925,7 +14925,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<?? !!>"  :subid("311_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<?? !!>"  :subid("311_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1218_tgt
     .local int rx1218_pos
@@ -15014,7 +15014,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<?? !!>"  :subid("312_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<?? !!>"  :subid("312_1275160381.56318") :method
 .annotate 'line', 433
     $P1220 = self."!PREFIX__!subrule"("", "??")
     new $P1221, "ResizablePMCArray"
@@ -15024,7 +15024,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<=>"  :subid("313_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<=>"  :subid("313_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1224_tgt
     .local int rx1224_pos
@@ -15102,7 +15102,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<=>"  :subid("314_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<=>"  :subid("314_1275160381.56318") :method
 .annotate 'line', 433
     $P1226 = self."!PREFIX__!subrule"("", "=")
     new $P1227, "ResizablePMCArray"
@@ -15112,7 +15112,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<:=>"  :subid("315_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<:=>"  :subid("315_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1231_tgt
     .local int rx1231_pos
@@ -15191,7 +15191,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<:=>"  :subid("316_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<:=>"  :subid("316_1275160381.56318") :method
 .annotate 'line', 433
     $P1233 = self."!PREFIX__!subrule"("O", ":=")
     new $P1234, "ResizablePMCArray"
@@ -15201,7 +15201,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<::=>"  :subid("317_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<::=>"  :subid("317_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1238_tgt
     .local int rx1238_pos
@@ -15280,7 +15280,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<::=>"  :subid("318_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<::=>"  :subid("318_1275160381.56318") :method
 .annotate 'line', 433
     $P1240 = self."!PREFIX__!subrule"("O", "::=")
     new $P1241, "ResizablePMCArray"
@@ -15290,7 +15290,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "infix:sym<,>"  :subid("319_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "infix:sym<,>"  :subid("319_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1245_tgt
     .local int rx1245_pos
@@ -15369,7 +15369,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__infix:sym<,>"  :subid("320_1275117591.97262") :method
+.sub "!PREFIX__infix:sym<,>"  :subid("320_1275160381.56318") :method
 .annotate 'line', 433
     $P1247 = self."!PREFIX__!subrule"("O", ",")
     new $P1248, "ResizablePMCArray"
@@ -15379,7 +15379,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<return>"  :subid("321_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<return>"  :subid("321_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1252_tgt
     .local int rx1252_pos
@@ -15464,7 +15464,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<return>"  :subid("322_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<return>"  :subid("322_1275160381.56318") :method
 .annotate 'line', 433
     new $P1254, "ResizablePMCArray"
     push $P1254, "return"
@@ -15473,7 +15473,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "prefix:sym<make>"  :subid("323_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "prefix:sym<make>"  :subid("323_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1258_tgt
     .local int rx1258_pos
@@ -15558,7 +15558,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__prefix:sym<make>"  :subid("324_1275117591.97262") :method
+.sub "!PREFIX__prefix:sym<make>"  :subid("324_1275160381.56318") :method
 .annotate 'line', 433
     new $P1260, "ResizablePMCArray"
     push $P1260, "make"
@@ -15567,7 +15567,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<last>"  :subid("325_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<last>"  :subid("325_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1264_tgt
     .local int rx1264_pos
@@ -15639,7 +15639,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<last>"  :subid("326_1275117591.97262") :method
+.sub "!PREFIX__term:sym<last>"  :subid("326_1275160381.56318") :method
 .annotate 'line', 433
     new $P1266, "ResizablePMCArray"
     push $P1266, "last"
@@ -15648,7 +15648,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<next>"  :subid("327_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<next>"  :subid("327_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1270_tgt
     .local int rx1270_pos
@@ -15720,7 +15720,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<next>"  :subid("328_1275117591.97262") :method
+.sub "!PREFIX__term:sym<next>"  :subid("328_1275160381.56318") :method
 .annotate 'line', 433
     new $P1272, "ResizablePMCArray"
     push $P1272, "next"
@@ -15729,7 +15729,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "term:sym<redo>"  :subid("329_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "term:sym<redo>"  :subid("329_1275160381.56318") :method :outer("11_1275160381.56318")
 .annotate 'line', 433
     .local string rx1276_tgt
     .local int rx1276_pos
@@ -15801,7 +15801,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "!PREFIX__term:sym<redo>"  :subid("330_1275117591.97262") :method
+.sub "!PREFIX__term:sym<redo>"  :subid("330_1275160381.56318") :method
 .annotate 'line', 433
     new $P1278, "ResizablePMCArray"
     push $P1278, "redo"
@@ -15810,7 +15810,7 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "smartmatch"  :subid("331_1275117591.97262") :method :outer("11_1275117591.97262")
+.sub "smartmatch"  :subid("331_1275160381.56318") :method :outer("11_1275160381.56318")
     .param pmc param_1284
 .annotate 'line', 544
     new $P1283, 'ExceptionHandler'
@@ -15863,34 +15863,34 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "_block1294"  :subid("332_1275117591.97262") :outer("11_1275117591.97262")
+.sub "_block1294"  :subid("332_1275160381.56318") :outer("11_1275160381.56318")
 .annotate 'line', 550
-    .const 'Sub' $P1352 = "351_1275117591.97262" 
+    .const 'Sub' $P1352 = "351_1275160381.56318" 
     capture_lex $P1352
-    .const 'Sub' $P1347 = "349_1275117591.97262" 
+    .const 'Sub' $P1347 = "349_1275160381.56318" 
     capture_lex $P1347
-    .const 'Sub' $P1334 = "346_1275117591.97262" 
+    .const 'Sub' $P1334 = "346_1275160381.56318" 
     capture_lex $P1334
-    .const 'Sub' $P1324 = "343_1275117591.97262" 
+    .const 'Sub' $P1324 = "343_1275160381.56318" 
     capture_lex $P1324
-    .const 'Sub' $P1319 = "341_1275117591.97262" 
+    .const 'Sub' $P1319 = "341_1275160381.56318" 
     capture_lex $P1319
-    .const 'Sub' $P1310 = "338_1275117591.97262" 
+    .const 'Sub' $P1310 = "338_1275160381.56318" 
     capture_lex $P1310
-    .const 'Sub' $P1305 = "336_1275117591.97262" 
+    .const 'Sub' $P1305 = "336_1275160381.56318" 
     capture_lex $P1305
-    .const 'Sub' $P1296 = "333_1275117591.97262" 
+    .const 'Sub' $P1296 = "333_1275160381.56318" 
     capture_lex $P1296
-    .const 'Sub' $P1352 = "351_1275117591.97262" 
+    .const 'Sub' $P1352 = "351_1275160381.56318" 
     capture_lex $P1352
     .return ($P1352)
 .end
 
 
 .namespace ["NQP";"Regex"]
-.sub "metachar:sym<:my>"  :subid("333_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "metachar:sym<:my>"  :subid("333_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
-    .const 'Sub' $P1302 = "335_1275117591.97262" 
+    .const 'Sub' $P1302 = "335_1275160381.56318" 
     capture_lex $P1302
     .local string rx1297_tgt
     .local int rx1297_pos
@@ -15931,7 +15931,7 @@
     add rx1297_pos, 1
   # rx subrule "before" subtype=zerowidth negate=
     rx1297_cur."!cursor_pos"(rx1297_pos)
-    .const 'Sub' $P1302 = "335_1275117591.97262" 
+    .const 'Sub' $P1302 = "335_1275160381.56318" 
     capture_lex $P1302
     $P10 = rx1297_cur."before"($P1302)
     unless $P10, rx1297_fail
@@ -15974,7 +15974,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__metachar:sym<:my>"  :subid("334_1275117591.97262") :method
+.sub "!PREFIX__metachar:sym<:my>"  :subid("334_1275160381.56318") :method
 .annotate 'line', 550
     new $P1299, "ResizablePMCArray"
     push $P1299, ":"
@@ -15983,7 +15983,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "_block1301"  :anon :subid("335_1275117591.97262") :method :outer("333_1275117591.97262")
+.sub "_block1301"  :anon :subid("335_1275160381.56318") :method :outer("333_1275160381.56318")
 .annotate 'line', 552
     .local string rx1303_tgt
     .local int rx1303_pos
@@ -16039,7 +16039,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "metachar:sym<{ }>"  :subid("336_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "metachar:sym<{ }>"  :subid("336_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
     .local string rx1306_tgt
     .local int rx1306_pos
@@ -16104,7 +16104,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__metachar:sym<{ }>"  :subid("337_1275117591.97262") :method
+.sub "!PREFIX__metachar:sym<{ }>"  :subid("337_1275160381.56318") :method
 .annotate 'line', 550
     new $P1308, "ResizablePMCArray"
     push $P1308, "{"
@@ -16113,9 +16113,9 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "metachar:sym<nqpvar>"  :subid("338_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "metachar:sym<nqpvar>"  :subid("338_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
-    .const 'Sub' $P1316 = "340_1275117591.97262" 
+    .const 'Sub' $P1316 = "340_1275160381.56318" 
     capture_lex $P1316
     .local string rx1311_tgt
     .local int rx1311_pos
@@ -16155,7 +16155,7 @@
     lt $I11, 0, rx1311_fail
   # rx subrule "before" subtype=zerowidth negate=
     rx1311_cur."!cursor_pos"(rx1311_pos)
-    .const 'Sub' $P1316 = "340_1275117591.97262" 
+    .const 'Sub' $P1316 = "340_1275160381.56318" 
     capture_lex $P1316
     $P10 = rx1311_cur."before"($P1316)
     unless $P10, rx1311_fail
@@ -16186,7 +16186,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__metachar:sym<nqpvar>"  :subid("339_1275117591.97262") :method
+.sub "!PREFIX__metachar:sym<nqpvar>"  :subid("339_1275160381.56318") :method
 .annotate 'line', 550
     new $P1313, "ResizablePMCArray"
     push $P1313, "$"
@@ -16196,7 +16196,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "_block1315"  :anon :subid("340_1275117591.97262") :method :outer("338_1275117591.97262")
+.sub "_block1315"  :anon :subid("340_1275160381.56318") :method :outer("338_1275160381.56318")
 .annotate 'line', 560
     .local string rx1317_tgt
     .local int rx1317_pos
@@ -16254,7 +16254,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "assertion:sym<{ }>"  :subid("341_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "assertion:sym<{ }>"  :subid("341_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
     .local string rx1320_tgt
     .local int rx1320_pos
@@ -16319,7 +16319,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__assertion:sym<{ }>"  :subid("342_1275117591.97262") :method
+.sub "!PREFIX__assertion:sym<{ }>"  :subid("342_1275160381.56318") :method
 .annotate 'line', 550
     new $P1322, "ResizablePMCArray"
     push $P1322, "{"
@@ -16328,9 +16328,9 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "assertion:sym<?{ }>"  :subid("343_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "assertion:sym<?{ }>"  :subid("343_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
-    .const 'Sub' $P1330 = "345_1275117591.97262" 
+    .const 'Sub' $P1330 = "345_1275160381.56318" 
     capture_lex $P1330
     .local string rx1325_tgt
     .local int rx1325_pos
@@ -16374,7 +16374,7 @@
     inc rx1325_pos
   # rx subrule "before" subtype=zerowidth negate=
     rx1325_cur."!cursor_pos"(rx1325_pos)
-    .const 'Sub' $P1330 = "345_1275117591.97262" 
+    .const 'Sub' $P1330 = "345_1275160381.56318" 
     capture_lex $P1330
     $P10 = rx1325_cur."before"($P1330)
     unless $P10, rx1325_fail
@@ -16416,7 +16416,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__assertion:sym<?{ }>"  :subid("344_1275117591.97262") :method
+.sub "!PREFIX__assertion:sym<?{ }>"  :subid("344_1275160381.56318") :method
 .annotate 'line', 550
     new $P1327, "ResizablePMCArray"
     push $P1327, "!"
@@ -16426,7 +16426,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "_block1329"  :anon :subid("345_1275117591.97262") :method :outer("343_1275117591.97262")
+.sub "_block1329"  :anon :subid("345_1275160381.56318") :method :outer("343_1275160381.56318")
 .annotate 'line', 568
     .local string rx1331_tgt
     .local int rx1331_pos
@@ -16482,9 +16482,9 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "assertion:sym<name>"  :subid("346_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "assertion:sym<name>"  :subid("346_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
-    .const 'Sub' $P1343 = "348_1275117591.97262" 
+    .const 'Sub' $P1343 = "348_1275160381.56318" 
     capture_lex $P1343
     .local string rx1335_tgt
     .local int rx1335_pos
@@ -16494,7 +16494,7 @@
     .local pmc rx1335_cur
     (rx1335_cur, rx1335_pos, rx1335_tgt) = self."!cursor_start"()
     rx1335_cur."!cursor_debug"("START ", "assertion:sym<name>")
-    rx1335_cur."!cursor_caparray"("nibbler", "arglist", "assertion")
+    rx1335_cur."!cursor_caparray"("assertion", "nibbler", "arglist")
     .lex unicode:"$\x{a2}", rx1335_cur
     .local pmc match
     .lex "$/", match
@@ -16549,7 +16549,7 @@
 .annotate 'line', 574
   # rx subrule "before" subtype=zerowidth negate=
     rx1335_cur."!cursor_pos"(rx1335_pos)
-    .const 'Sub' $P1343 = "348_1275117591.97262" 
+    .const 'Sub' $P1343 = "348_1275160381.56318" 
     capture_lex $P1343
     $P10 = rx1335_cur."before"($P1343)
     unless $P10, rx1335_fail
@@ -16656,7 +16656,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__assertion:sym<name>"  :subid("347_1275117591.97262") :method
+.sub "!PREFIX__assertion:sym<name>"  :subid("347_1275160381.56318") :method
 .annotate 'line', 550
     new $P1337, "ResizablePMCArray"
     push $P1337, ""
@@ -16665,7 +16665,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "_block1342"  :anon :subid("348_1275117591.97262") :method :outer("346_1275117591.97262")
+.sub "_block1342"  :anon :subid("348_1275160381.56318") :method :outer("346_1275160381.56318")
 .annotate 'line', 574
     .local string rx1344_tgt
     .local int rx1344_pos
@@ -16721,7 +16721,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "assertion:sym<var>"  :subid("349_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "assertion:sym<var>"  :subid("349_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
     .local string rx1348_tgt
     .local int rx1348_pos
@@ -16786,7 +16786,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__assertion:sym<var>"  :subid("350_1275117591.97262") :method
+.sub "!PREFIX__assertion:sym<var>"  :subid("350_1275160381.56318") :method
 .annotate 'line', 550
     new $P1350, "ResizablePMCArray"
     push $P1350, "$"
@@ -16796,7 +16796,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "codeblock"  :subid("351_1275117591.97262") :method :outer("332_1275117591.97262")
+.sub "codeblock"  :subid("351_1275160381.56318") :method :outer("332_1275160381.56318")
 .annotate 'line', 550
     .local string rx1353_tgt
     .local int rx1353_pos
@@ -16855,7 +16855,7 @@
 
 
 .namespace ["NQP";"Regex"]
-.sub "!PREFIX__codeblock"  :subid("352_1275117591.97262") :method
+.sub "!PREFIX__codeblock"  :subid("352_1275160381.56318") :method
 .annotate 'line', 550
     $P1355 = self."!PREFIX__!subrule"("block", "")
     new $P1356, "ResizablePMCArray"
@@ -16865,18 +16865,18 @@
 
 
 .namespace ["NQP";"Grammar"]
-.sub "_block1359" :load :anon :subid("353_1275117591.97262")
+.sub "_block1359" :load :anon :subid("353_1275160381.56318")
 .annotate 'line', 4
-    .const 'Sub' $P1361 = "11_1275117591.97262" 
+    .const 'Sub' $P1361 = "11_1275160381.56318" 
     $P1362 = $P1361()
     .return ($P1362)
 .end
 
 
 .namespace []
-.sub "_block1380" :load :anon :subid("354_1275117591.97262")
+.sub "_block1380" :load :anon :subid("354_1275160381.56318")
 .annotate 'line', 1
-    .const 'Sub' $P1382 = "10_1275117591.97262" 
+    .const 'Sub' $P1382 = "10_1275160381.56318" 
     $P1383 = $P1382()
     .return ($P1383)
 .end
@@ -16884,7 +16884,7 @@
 ### .include 'gen/nqp-actions.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117616.72633")
+.sub "_block11"  :anon :subid("10_1275160395.4197")
 .annotate 'line', 0
     get_hll_global $P14, ["NQP";"Actions"], "_block13" 
     capture_lex $P14
@@ -16901,15 +16901,15 @@
     $P2323 = $P14()
 .annotate 'line', 1
     .return ($P2323)
-    .const 'Sub' $P2325 = "137_1275117616.72633" 
+    .const 'Sub' $P2325 = "137_1275160395.4197" 
     .return ($P2325)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post138") :outer("10_1275117616.72633")
+.sub "" :load :init :subid("post138") :outer("10_1275160395.4197")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117616.72633" 
+    .const 'Sub' $P12 = "10_1275160395.4197" 
     .local pmc block
     set block, $P12
     $P2328 = get_root_global ["parrot"], "P6metaclass"
@@ -16918,213 +16918,213 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block13"  :subid("11_1275117616.72633") :outer("10_1275117616.72633")
+.sub "_block13"  :subid("11_1275160395.4197") :outer("10_1275160395.4197")
 .annotate 'line', 3
-    .const 'Sub' $P2319 = "136_1275117616.72633" 
+    .const 'Sub' $P2319 = "136_1275160395.4197" 
     capture_lex $P2319
     get_hll_global $P2203, ["NQP";"RegexActions"], "_block2202" 
     capture_lex $P2203
-    .const 'Sub' $P2192 = "126_1275117616.72633" 
+    .const 'Sub' $P2192 = "126_1275160395.4197" 
     capture_lex $P2192
-    .const 'Sub' $P2185 = "125_1275117616.72633" 
+    .const 'Sub' $P2185 = "125_1275160395.4197" 
     capture_lex $P2185
-    .const 'Sub' $P2178 = "124_1275117616.72633" 
+    .const 'Sub' $P2178 = "124_1275160395.4197" 
     capture_lex $P2178
-    .const 'Sub' $P2171 = "123_1275117616.72633" 
+    .const 'Sub' $P2171 = "123_1275160395.4197" 
     capture_lex $P2171
-    .const 'Sub' $P2158 = "122_1275117616.72633" 
+    .const 'Sub' $P2158 = "122_1275160395.4197" 
     capture_lex $P2158
-    .const 'Sub' $P2148 = "121_1275117616.72633" 
+    .const 'Sub' $P2148 = "121_1275160395.4197" 
     capture_lex $P2148
-    .const 'Sub' $P2138 = "120_1275117616.72633" 
+    .const 'Sub' $P2138 = "120_1275160395.4197" 
     capture_lex $P2138
-    .const 'Sub' $P2128 = "119_1275117616.72633" 
+    .const 'Sub' $P2128 = "119_1275160395.4197" 
     capture_lex $P2128
-    .const 'Sub' $P2121 = "118_1275117616.72633" 
+    .const 'Sub' $P2121 = "118_1275160395.4197" 
     capture_lex $P2121
-    .const 'Sub' $P2107 = "117_1275117616.72633" 
+    .const 'Sub' $P2107 = "117_1275160395.4197" 
     capture_lex $P2107
-    .const 'Sub' $P2097 = "116_1275117616.72633" 
+    .const 'Sub' $P2097 = "116_1275160395.4197" 
     capture_lex $P2097
-    .const 'Sub' $P2060 = "115_1275117616.72633" 
+    .const 'Sub' $P2060 = "115_1275160395.4197" 
     capture_lex $P2060
-    .const 'Sub' $P2046 = "114_1275117616.72633" 
+    .const 'Sub' $P2046 = "114_1275160395.4197" 
     capture_lex $P2046
-    .const 'Sub' $P2036 = "113_1275117616.72633" 
+    .const 'Sub' $P2036 = "113_1275160395.4197" 
     capture_lex $P2036
-    .const 'Sub' $P2026 = "112_1275117616.72633" 
+    .const 'Sub' $P2026 = "112_1275160395.4197" 
     capture_lex $P2026
-    .const 'Sub' $P2016 = "111_1275117616.72633" 
+    .const 'Sub' $P2016 = "111_1275160395.4197" 
     capture_lex $P2016
-    .const 'Sub' $P2006 = "110_1275117616.72633" 
+    .const 'Sub' $P2006 = "110_1275160395.4197" 
     capture_lex $P2006
-    .const 'Sub' $P1996 = "109_1275117616.72633" 
+    .const 'Sub' $P1996 = "109_1275160395.4197" 
     capture_lex $P1996
-    .const 'Sub' $P1968 = "108_1275117616.72633" 
+    .const 'Sub' $P1968 = "108_1275160395.4197" 
     capture_lex $P1968
-    .const 'Sub' $P1951 = "107_1275117616.72633" 
+    .const 'Sub' $P1951 = "107_1275160395.4197" 
     capture_lex $P1951
-    .const 'Sub' $P1941 = "106_1275117616.72633" 
+    .const 'Sub' $P1941 = "106_1275160395.4197" 
     capture_lex $P1941
-    .const 'Sub' $P1928 = "105_1275117616.72633" 
+    .const 'Sub' $P1928 = "105_1275160395.4197" 
     capture_lex $P1928
-    .const 'Sub' $P1915 = "104_1275117616.72633" 
+    .const 'Sub' $P1915 = "104_1275160395.4197" 
     capture_lex $P1915
-    .const 'Sub' $P1902 = "103_1275117616.72633" 
+    .const 'Sub' $P1902 = "103_1275160395.4197" 
     capture_lex $P1902
-    .const 'Sub' $P1892 = "102_1275117616.72633" 
+    .const 'Sub' $P1892 = "102_1275160395.4197" 
     capture_lex $P1892
-    .const 'Sub' $P1863 = "101_1275117616.72633" 
+    .const 'Sub' $P1863 = "101_1275160395.4197" 
     capture_lex $P1863
-    .const 'Sub' $P1839 = "100_1275117616.72633" 
+    .const 'Sub' $P1839 = "100_1275160395.4197" 
     capture_lex $P1839
-    .const 'Sub' $P1829 = "99_1275117616.72633" 
+    .const 'Sub' $P1829 = "99_1275160395.4197" 
     capture_lex $P1829
-    .const 'Sub' $P1819 = "98_1275117616.72633" 
+    .const 'Sub' $P1819 = "98_1275160395.4197" 
     capture_lex $P1819
-    .const 'Sub' $P1792 = "97_1275117616.72633" 
+    .const 'Sub' $P1792 = "97_1275160395.4197" 
     capture_lex $P1792
-    .const 'Sub' $P1774 = "96_1275117616.72633" 
+    .const 'Sub' $P1774 = "96_1275160395.4197" 
     capture_lex $P1774
-    .const 'Sub' $P1764 = "95_1275117616.72633" 
+    .const 'Sub' $P1764 = "95_1275160395.4197" 
     capture_lex $P1764
-    .const 'Sub' $P1660 = "92_1275117616.72633" 
+    .const 'Sub' $P1660 = "92_1275160395.4197" 
     capture_lex $P1660
-    .const 'Sub' $P1650 = "91_1275117616.72633" 
+    .const 'Sub' $P1650 = "91_1275160395.4197" 
     capture_lex $P1650
-    .const 'Sub' $P1621 = "90_1275117616.72633" 
+    .const 'Sub' $P1621 = "90_1275160395.4197" 
     capture_lex $P1621
-    .const 'Sub' $P1579 = "89_1275117616.72633" 
+    .const 'Sub' $P1579 = "89_1275160395.4197" 
     capture_lex $P1579
-    .const 'Sub' $P1563 = "88_1275117616.72633" 
+    .const 'Sub' $P1563 = "88_1275160395.4197" 
     capture_lex $P1563
-    .const 'Sub' $P1554 = "87_1275117616.72633" 
+    .const 'Sub' $P1554 = "87_1275160395.4197" 
     capture_lex $P1554
-    .const 'Sub' $P1522 = "86_1275117616.72633" 
+    .const 'Sub' $P1522 = "86_1275160395.4197" 
     capture_lex $P1522
-    .const 'Sub' $P1423 = "83_1275117616.72633" 
+    .const 'Sub' $P1423 = "83_1275160395.4197" 
     capture_lex $P1423
-    .const 'Sub' $P1406 = "82_1275117616.72633" 
+    .const 'Sub' $P1406 = "82_1275160395.4197" 
     capture_lex $P1406
-    .const 'Sub' $P1386 = "81_1275117616.72633" 
+    .const 'Sub' $P1386 = "81_1275160395.4197" 
     capture_lex $P1386
-    .const 'Sub' $P1302 = "80_1275117616.72633" 
+    .const 'Sub' $P1302 = "80_1275160395.4197" 
     capture_lex $P1302
-    .const 'Sub' $P1278 = "78_1275117616.72633" 
+    .const 'Sub' $P1278 = "78_1275160395.4197" 
     capture_lex $P1278
-    .const 'Sub' $P1244 = "76_1275117616.72633" 
+    .const 'Sub' $P1244 = "76_1275160395.4197" 
     capture_lex $P1244
-    .const 'Sub' $P1194 = "74_1275117616.72633" 
+    .const 'Sub' $P1194 = "74_1275160395.4197" 
     capture_lex $P1194
-    .const 'Sub' $P1184 = "73_1275117616.72633" 
+    .const 'Sub' $P1184 = "73_1275160395.4197" 
     capture_lex $P1184
-    .const 'Sub' $P1174 = "72_1275117616.72633" 
+    .const 'Sub' $P1174 = "72_1275160395.4197" 
     capture_lex $P1174
-    .const 'Sub' $P1103 = "70_1275117616.72633" 
+    .const 'Sub' $P1103 = "70_1275160395.4197" 
     capture_lex $P1103
-    .const 'Sub' $P1086 = "69_1275117616.72633" 
+    .const 'Sub' $P1086 = "69_1275160395.4197" 
     capture_lex $P1086
-    .const 'Sub' $P1076 = "68_1275117616.72633" 
+    .const 'Sub' $P1076 = "68_1275160395.4197" 
     capture_lex $P1076
-    .const 'Sub' $P1066 = "67_1275117616.72633" 
+    .const 'Sub' $P1066 = "67_1275160395.4197" 
     capture_lex $P1066
-    .const 'Sub' $P1056 = "66_1275117616.72633" 
+    .const 'Sub' $P1056 = "66_1275160395.4197" 
     capture_lex $P1056
-    .const 'Sub' $P1046 = "65_1275117616.72633" 
+    .const 'Sub' $P1046 = "65_1275160395.4197" 
     capture_lex $P1046
-    .const 'Sub' $P1022 = "64_1275117616.72633" 
+    .const 'Sub' $P1022 = "64_1275160395.4197" 
     capture_lex $P1022
-    .const 'Sub' $P969 = "63_1275117616.72633" 
+    .const 'Sub' $P969 = "63_1275160395.4197" 
     capture_lex $P969
-    .const 'Sub' $P959 = "62_1275117616.72633" 
+    .const 'Sub' $P959 = "62_1275160395.4197" 
     capture_lex $P959
-    .const 'Sub' $P870 = "60_1275117616.72633" 
+    .const 'Sub' $P870 = "60_1275160395.4197" 
     capture_lex $P870
-    .const 'Sub' $P844 = "59_1275117616.72633" 
+    .const 'Sub' $P844 = "59_1275160395.4197" 
     capture_lex $P844
-    .const 'Sub' $P828 = "58_1275117616.72633" 
+    .const 'Sub' $P828 = "58_1275160395.4197" 
     capture_lex $P828
-    .const 'Sub' $P818 = "57_1275117616.72633" 
+    .const 'Sub' $P818 = "57_1275160395.4197" 
     capture_lex $P818
-    .const 'Sub' $P808 = "56_1275117616.72633" 
+    .const 'Sub' $P808 = "56_1275160395.4197" 
     capture_lex $P808
-    .const 'Sub' $P798 = "55_1275117616.72633" 
+    .const 'Sub' $P798 = "55_1275160395.4197" 
     capture_lex $P798
-    .const 'Sub' $P788 = "54_1275117616.72633" 
+    .const 'Sub' $P788 = "54_1275160395.4197" 
     capture_lex $P788
-    .const 'Sub' $P778 = "53_1275117616.72633" 
+    .const 'Sub' $P778 = "53_1275160395.4197" 
     capture_lex $P778
-    .const 'Sub' $P768 = "52_1275117616.72633" 
+    .const 'Sub' $P768 = "52_1275160395.4197" 
     capture_lex $P768
-    .const 'Sub' $P758 = "51_1275117616.72633" 
+    .const 'Sub' $P758 = "51_1275160395.4197" 
     capture_lex $P758
-    .const 'Sub' $P748 = "50_1275117616.72633" 
+    .const 'Sub' $P748 = "50_1275160395.4197" 
     capture_lex $P748
-    .const 'Sub' $P738 = "49_1275117616.72633" 
+    .const 'Sub' $P738 = "49_1275160395.4197" 
     capture_lex $P738
-    .const 'Sub' $P728 = "48_1275117616.72633" 
+    .const 'Sub' $P728 = "48_1275160395.4197" 
     capture_lex $P728
-    .const 'Sub' $P718 = "47_1275117616.72633" 
+    .const 'Sub' $P718 = "47_1275160395.4197" 
     capture_lex $P718
-    .const 'Sub' $P708 = "46_1275117616.72633" 
+    .const 'Sub' $P708 = "46_1275160395.4197" 
     capture_lex $P708
-    .const 'Sub' $P698 = "45_1275117616.72633" 
+    .const 'Sub' $P698 = "45_1275160395.4197" 
     capture_lex $P698
-    .const 'Sub' $P680 = "44_1275117616.72633" 
+    .const 'Sub' $P680 = "44_1275160395.4197" 
     capture_lex $P680
-    .const 'Sub' $P645 = "43_1275117616.72633" 
+    .const 'Sub' $P645 = "43_1275160395.4197" 
     capture_lex $P645
-    .const 'Sub' $P629 = "42_1275117616.72633" 
+    .const 'Sub' $P629 = "42_1275160395.4197" 
     capture_lex $P629
-    .const 'Sub' $P608 = "41_1275117616.72633" 
+    .const 'Sub' $P608 = "41_1275160395.4197" 
     capture_lex $P608
-    .const 'Sub' $P588 = "40_1275117616.72633" 
+    .const 'Sub' $P588 = "40_1275160395.4197" 
     capture_lex $P588
-    .const 'Sub' $P575 = "39_1275117616.72633" 
+    .const 'Sub' $P575 = "39_1275160395.4197" 
     capture_lex $P575
-    .const 'Sub' $P549 = "38_1275117616.72633" 
+    .const 'Sub' $P549 = "38_1275160395.4197" 
     capture_lex $P549
-    .const 'Sub' $P513 = "37_1275117616.72633" 
+    .const 'Sub' $P513 = "37_1275160395.4197" 
     capture_lex $P513
-    .const 'Sub' $P496 = "36_1275117616.72633" 
+    .const 'Sub' $P496 = "36_1275160395.4197" 
     capture_lex $P496
-    .const 'Sub' $P482 = "35_1275117616.72633" 
+    .const 'Sub' $P482 = "35_1275160395.4197" 
     capture_lex $P482
-    .const 'Sub' $P429 = "33_1275117616.72633" 
+    .const 'Sub' $P429 = "33_1275160395.4197" 
     capture_lex $P429
-    .const 'Sub' $P418 = "32_1275117616.72633" 
+    .const 'Sub' $P418 = "32_1275160395.4197" 
     capture_lex $P418
-    .const 'Sub' $P405 = "31_1275117616.72633" 
+    .const 'Sub' $P405 = "31_1275160395.4197" 
     capture_lex $P405
-    .const 'Sub' $P385 = "30_1275117616.72633" 
+    .const 'Sub' $P385 = "30_1275160395.4197" 
     capture_lex $P385
-    .const 'Sub' $P375 = "29_1275117616.72633" 
+    .const 'Sub' $P375 = "29_1275160395.4197" 
     capture_lex $P375
-    .const 'Sub' $P365 = "28_1275117616.72633" 
+    .const 'Sub' $P365 = "28_1275160395.4197" 
     capture_lex $P365
-    .const 'Sub' $P349 = "27_1275117616.72633" 
+    .const 'Sub' $P349 = "27_1275160395.4197" 
     capture_lex $P349
-    .const 'Sub' $P289 = "25_1275117616.72633" 
+    .const 'Sub' $P289 = "25_1275160395.4197" 
     capture_lex $P289
-    .const 'Sub' $P246 = "23_1275117616.72633" 
+    .const 'Sub' $P246 = "23_1275160395.4197" 
     capture_lex $P246
-    .const 'Sub' $P214 = "22_1275117616.72633" 
+    .const 'Sub' $P214 = "22_1275160395.4197" 
     capture_lex $P214
-    .const 'Sub' $P181 = "21_1275117616.72633" 
+    .const 'Sub' $P181 = "21_1275160395.4197" 
     capture_lex $P181
-    .const 'Sub' $P171 = "20_1275117616.72633" 
+    .const 'Sub' $P171 = "20_1275160395.4197" 
     capture_lex $P171
-    .const 'Sub' $P151 = "19_1275117616.72633" 
+    .const 'Sub' $P151 = "19_1275160395.4197" 
     capture_lex $P151
-    .const 'Sub' $P100 = "18_1275117616.72633" 
+    .const 'Sub' $P100 = "18_1275160395.4197" 
     capture_lex $P100
-    .const 'Sub' $P84 = "17_1275117616.72633" 
+    .const 'Sub' $P84 = "17_1275160395.4197" 
     capture_lex $P84
-    .const 'Sub' $P63 = "16_1275117616.72633" 
+    .const 'Sub' $P63 = "16_1275160395.4197" 
     capture_lex $P63
-    .const 'Sub' $P27 = "13_1275117616.72633" 
+    .const 'Sub' $P27 = "13_1275160395.4197" 
     capture_lex $P27
-    .const 'Sub' $P16 = "12_1275117616.72633" 
+    .const 'Sub' $P16 = "12_1275160395.4197" 
     capture_lex $P16
     get_global $P15, "@BLOCK"
     unless_null $P15, vivify_141
@@ -17132,27 +17132,27 @@
     set_global "@BLOCK", $P15
   vivify_141:
 .annotate 'line', 9
-    .const 'Sub' $P16 = "12_1275117616.72633" 
+    .const 'Sub' $P16 = "12_1275160395.4197" 
     newclosure $P26, $P16
     .lex "xblock_immediate", $P26
 .annotate 'line', 14
-    .const 'Sub' $P27 = "13_1275117616.72633" 
+    .const 'Sub' $P27 = "13_1275160395.4197" 
     newclosure $P62, $P27
     .lex "block_immediate", $P62
 .annotate 'line', 24
-    .const 'Sub' $P63 = "16_1275117616.72633" 
+    .const 'Sub' $P63 = "16_1275160395.4197" 
     newclosure $P83, $P63
     .lex "vivitype", $P83
 .annotate 'line', 43
-    .const 'Sub' $P84 = "17_1275117616.72633" 
+    .const 'Sub' $P84 = "17_1275160395.4197" 
     newclosure $P99, $P84
     .lex "colonpair_str", $P99
 .annotate 'line', 213
-    .const 'Sub' $P100 = "18_1275117616.72633" 
+    .const 'Sub' $P100 = "18_1275160395.4197" 
     newclosure $P150, $P100
     .lex "push_block_handler", $P150
 .annotate 'line', 797
-    .const 'Sub' $P151 = "19_1275117616.72633" 
+    .const 'Sub' $P151 = "19_1275160395.4197" 
     newclosure $P166, $P151
     .lex "control", $P166
 .annotate 'line', 3
@@ -17179,19 +17179,19 @@
     $P2313 = $P2203()
 .annotate 'line', 3
     .return ($P2313)
-    .const 'Sub' $P2315 = "135_1275117616.72633" 
+    .const 'Sub' $P2315 = "135_1275160395.4197" 
     .return ($P2315)
 .end
 
 
 .namespace ["NQP";"Actions"]
-.sub "" :load :init :subid("post139") :outer("11_1275117616.72633")
+.sub "" :load :init :subid("post139") :outer("11_1275160395.4197")
 .annotate 'line', 3
     get_hll_global $P14, ["NQP";"Actions"], "_block13" 
     .local pmc block
     set block, $P14
 .annotate 'line', 5
-    .const 'Sub' $P2319 = "136_1275117616.72633" 
+    .const 'Sub' $P2319 = "136_1275160395.4197" 
     capture_lex $P2319
     $P2319()
     $P2322 = get_root_global ["parrot"], "P6metaclass"
@@ -17200,7 +17200,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block2318"  :anon :subid("136_1275117616.72633") :outer("11_1275117616.72633")
+.sub "_block2318"  :anon :subid("136_1275160395.4197") :outer("11_1275160395.4197")
 .annotate 'line', 6
     get_global $P2320, "@BLOCK"
     unless_null $P2320, vivify_140
@@ -17215,7 +17215,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "xblock_immediate"  :subid("12_1275117616.72633") :outer("11_1275117616.72633")
+.sub "xblock_immediate"  :subid("12_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_19
 .annotate 'line', 9
     new $P18, 'ExceptionHandler'
@@ -17251,10 +17251,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "block_immediate"  :subid("13_1275117616.72633") :outer("11_1275117616.72633")
+.sub "block_immediate"  :subid("13_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_30
 .annotate 'line', 14
-    .const 'Sub' $P40 = "14_1275117616.72633" 
+    .const 'Sub' $P40 = "14_1275160395.4197" 
     capture_lex $P40
     new $P29, 'ExceptionHandler'
     set_addr $P29, control_28
@@ -17276,7 +17276,7 @@
     set $P33, $P38
   unless_34_end:
     if $P33, unless_32_end
-    .const 'Sub' $P40 = "14_1275117616.72633" 
+    .const 'Sub' $P40 = "14_1275160395.4197" 
     capture_lex $P40
     $P40()
   unless_32_end:
@@ -17292,9 +17292,9 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block39"  :anon :subid("14_1275117616.72633") :outer("13_1275117616.72633")
+.sub "_block39"  :anon :subid("14_1275160395.4197") :outer("13_1275160395.4197")
 .annotate 'line', 16
-    .const 'Sub' $P51 = "15_1275117616.72633" 
+    .const 'Sub' $P51 = "15_1275160395.4197" 
     capture_lex $P51
 .annotate 'line', 17
     new $P41, "Undef"
@@ -17317,7 +17317,7 @@
     unless $P45, loop56_done
     shift $P49, $P45
   loop56_redo:
-    .const 'Sub' $P51 = "15_1275117616.72633" 
+    .const 'Sub' $P51 = "15_1275160395.4197" 
     capture_lex $P51
     $P51($P49)
   loop56_next:
@@ -17340,7 +17340,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block50"  :anon :subid("15_1275117616.72633") :outer("14_1275117616.72633")
+.sub "_block50"  :anon :subid("15_1275160395.4197") :outer("14_1275160395.4197")
     .param pmc param_52
 .annotate 'line', 18
     .lex "$_", param_52
@@ -17352,7 +17352,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "vivitype"  :subid("16_1275117616.72633") :outer("11_1275117616.72633")
+.sub "vivitype"  :subid("16_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_66
 .annotate 'line', 24
     new $P65, 'ExceptionHandler'
@@ -17400,7 +17400,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "colonpair_str"  :subid("17_1275117616.72633") :outer("11_1275117616.72633")
+.sub "colonpair_str"  :subid("17_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_87
 .annotate 'line', 43
     new $P86, 'ExceptionHandler'
@@ -17438,7 +17438,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "push_block_handler"  :subid("18_1275117616.72633") :outer("11_1275117616.72633")
+.sub "push_block_handler"  :subid("18_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_103
     .param pmc param_104
 .annotate 'line', 213
@@ -17555,7 +17555,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "control"  :subid("19_1275117616.72633") :outer("11_1275117616.72633")
+.sub "control"  :subid("19_1275160395.4197") :outer("11_1275160395.4197")
     .param pmc param_154
     .param pmc param_155
 .annotate 'line', 797
@@ -17593,7 +17593,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "TOP"  :subid("20_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "TOP"  :subid("20_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_174
 .annotate 'line', 33
     new $P173, 'ExceptionHandler'
@@ -17623,7 +17623,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "deflongname"  :subid("21_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "deflongname"  :subid("21_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_184
 .annotate 'line', 35
     new $P183, 'ExceptionHandler'
@@ -17712,7 +17712,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "comp_unit"  :subid("22_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "comp_unit"  :subid("22_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_217
 .annotate 'line', 49
     new $P216, 'ExceptionHandler'
@@ -17786,10 +17786,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statementlist"  :subid("23_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statementlist"  :subid("23_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_249
 .annotate 'line', 76
-    .const 'Sub' $P263 = "24_1275117616.72633" 
+    .const 'Sub' $P263 = "24_1275160395.4197" 
     capture_lex $P263
     new $P248, 'ExceptionHandler'
     set_addr $P248, control_247
@@ -17834,7 +17834,7 @@
     unless $P257, loop282_done
     shift $P261, $P257
   loop282_redo:
-    .const 'Sub' $P263 = "24_1275117616.72633" 
+    .const 'Sub' $P263 = "24_1275160395.4197" 
     capture_lex $P263
     $P263($P261)
   loop282_next:
@@ -17864,7 +17864,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block262"  :anon :subid("24_1275117616.72633") :outer("23_1275117616.72633")
+.sub "_block262"  :anon :subid("24_1275160395.4197") :outer("23_1275160395.4197")
     .param pmc param_265
 .annotate 'line', 80
     new $P264, "Undef"
@@ -17918,12 +17918,12 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement"  :subid("25_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement"  :subid("25_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_292
     .param pmc param_293 :optional
     .param int has_param_293 :opt_flag
 .annotate 'line', 89
-    .const 'Sub' $P301 = "26_1275117616.72633" 
+    .const 'Sub' $P301 = "26_1275160395.4197" 
     capture_lex $P301
     new $P291, 'ExceptionHandler'
     set_addr $P291, control_290
@@ -17982,7 +17982,7 @@
     goto if_297_end
   if_297:
 .annotate 'line', 91
-    .const 'Sub' $P301 = "26_1275117616.72633" 
+    .const 'Sub' $P301 = "26_1275160395.4197" 
     capture_lex $P301
     $P301()
   if_297_end:
@@ -18001,7 +18001,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block300"  :anon :subid("26_1275117616.72633") :outer("25_1275117616.72633")
+.sub "_block300"  :anon :subid("26_1275160395.4197") :outer("25_1275160395.4197")
 .annotate 'line', 92
     new $P302, "Undef"
     .lex "$mc", $P302
@@ -18114,7 +18114,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "xblock"  :subid("27_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "xblock"  :subid("27_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_352
 .annotate 'line', 107
     new $P351, 'ExceptionHandler'
@@ -18158,7 +18158,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "pblock"  :subid("28_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "pblock"  :subid("28_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_368
 .annotate 'line', 111
     new $P367, 'ExceptionHandler'
@@ -18190,7 +18190,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "block"  :subid("29_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "block"  :subid("29_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_378
 .annotate 'line', 115
     new $P377, 'ExceptionHandler'
@@ -18222,7 +18222,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "blockoid"  :subid("30_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "blockoid"  :subid("30_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_388
 .annotate 'line', 119
     new $P387, 'ExceptionHandler'
@@ -18278,7 +18278,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "newpad"  :subid("31_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "newpad"  :subid("31_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_408
 .annotate 'line', 128
     new $P407, 'ExceptionHandler'
@@ -18313,7 +18313,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "outerctx"  :subid("32_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "outerctx"  :subid("32_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_421
 .annotate 'line', 133
     new $P420, 'ExceptionHandler'
@@ -18352,10 +18352,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<if>"  :subid("33_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<if>"  :subid("33_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_432
 .annotate 'line', 140
-    .const 'Sub' $P460 = "34_1275117616.72633" 
+    .const 'Sub' $P460 = "34_1275160395.4197" 
     capture_lex $P460
     new $P431, 'ExceptionHandler'
     set_addr $P431, control_430
@@ -18440,7 +18440,7 @@
     isgt $I458, $N457, 0.0
     unless $I458, loop475_done
   loop475_redo:
-    .const 'Sub' $P460 = "34_1275117616.72633" 
+    .const 'Sub' $P460 = "34_1275160395.4197" 
     capture_lex $P460
     $P460()
   loop475_next:
@@ -18468,7 +18468,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block459"  :anon :subid("34_1275117616.72633") :outer("33_1275117616.72633")
+.sub "_block459"  :anon :subid("34_1275160395.4197") :outer("33_1275160395.4197")
 .annotate 'line', 149
     new $P461, "Undef"
     .lex "$else", $P461
@@ -18507,7 +18507,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<unless>"  :subid("35_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<unless>"  :subid("35_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_485
 .annotate 'line', 156
     new $P484, 'ExceptionHandler'
@@ -18548,7 +18548,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<while>"  :subid("36_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<while>"  :subid("36_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_499
 .annotate 'line', 162
     new $P498, 'ExceptionHandler'
@@ -18598,7 +18598,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<repeat>"  :subid("37_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<repeat>"  :subid("37_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_516
 .annotate 'line', 168
     new $P515, 'ExceptionHandler'
@@ -18698,7 +18698,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<for>"  :subid("38_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<for>"  :subid("38_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_552
 .annotate 'line', 182
     new $P551, 'ExceptionHandler'
@@ -18778,7 +18778,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<return>"  :subid("39_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<return>"  :subid("39_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_578
 .annotate 'line', 195
     new $P577, 'ExceptionHandler'
@@ -18813,7 +18813,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<CATCH>"  :subid("40_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<CATCH>"  :subid("40_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_591
 .annotate 'line', 199
     new $P590, 'ExceptionHandler'
@@ -18871,7 +18871,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_control:sym<CONTROL>"  :subid("41_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_control:sym<CONTROL>"  :subid("41_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_611
 .annotate 'line', 206
     new $P610, 'ExceptionHandler'
@@ -18929,7 +18929,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_prefix:sym<INIT>"  :subid("42_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_prefix:sym<INIT>"  :subid("42_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_632
 .annotate 'line', 250
     new $P631, 'ExceptionHandler'
@@ -18975,7 +18975,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_prefix:sym<try>"  :subid("43_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_prefix:sym<try>"  :subid("43_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_648
 .annotate 'line', 255
     new $P647, 'ExceptionHandler'
@@ -19052,7 +19052,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "blorst"  :subid("44_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "blorst"  :subid("44_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_683
 .annotate 'line', 278
     new $P682, 'ExceptionHandler'
@@ -19111,7 +19111,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_mod_cond:sym<if>"  :subid("45_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_mod_cond:sym<if>"  :subid("45_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_701
 .annotate 'line', 286
     new $P700, 'ExceptionHandler'
@@ -19141,7 +19141,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_mod_cond:sym<unless>"  :subid("46_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_mod_cond:sym<unless>"  :subid("46_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_711
 .annotate 'line', 287
     new $P710, 'ExceptionHandler'
@@ -19171,7 +19171,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_mod_loop:sym<while>"  :subid("47_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_mod_loop:sym<while>"  :subid("47_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_721
 .annotate 'line', 289
     new $P720, 'ExceptionHandler'
@@ -19201,7 +19201,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "statement_mod_loop:sym<until>"  :subid("48_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "statement_mod_loop:sym<until>"  :subid("48_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_731
 .annotate 'line', 290
     new $P730, 'ExceptionHandler'
@@ -19231,7 +19231,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<fatarrow>"  :subid("49_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<fatarrow>"  :subid("49_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_741
 .annotate 'line', 294
     new $P740, 'ExceptionHandler'
@@ -19261,7 +19261,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<colonpair>"  :subid("50_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<colonpair>"  :subid("50_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_751
 .annotate 'line', 295
     new $P750, 'ExceptionHandler'
@@ -19291,7 +19291,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<variable>"  :subid("51_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<variable>"  :subid("51_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_761
 .annotate 'line', 296
     new $P760, 'ExceptionHandler'
@@ -19321,7 +19321,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<package_declarator>"  :subid("52_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<package_declarator>"  :subid("52_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_771
 .annotate 'line', 297
     new $P770, 'ExceptionHandler'
@@ -19351,7 +19351,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<scope_declarator>"  :subid("53_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<scope_declarator>"  :subid("53_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_781
 .annotate 'line', 298
     new $P780, 'ExceptionHandler'
@@ -19381,7 +19381,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<routine_declarator>"  :subid("54_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<routine_declarator>"  :subid("54_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_791
 .annotate 'line', 299
     new $P790, 'ExceptionHandler'
@@ -19411,7 +19411,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<regex_declarator>"  :subid("55_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<regex_declarator>"  :subid("55_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_801
 .annotate 'line', 300
     new $P800, 'ExceptionHandler'
@@ -19441,7 +19441,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<statement_prefix>"  :subid("56_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<statement_prefix>"  :subid("56_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_811
 .annotate 'line', 301
     new $P810, 'ExceptionHandler'
@@ -19471,7 +19471,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<lambda>"  :subid("57_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<lambda>"  :subid("57_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_821
 .annotate 'line', 302
     new $P820, 'ExceptionHandler'
@@ -19501,7 +19501,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "fatarrow"  :subid("58_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "fatarrow"  :subid("58_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_831
 .annotate 'line', 304
     new $P830, 'ExceptionHandler'
@@ -19550,7 +19550,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "colonpair"  :subid("59_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "colonpair"  :subid("59_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_847
 .annotate 'line', 310
     new $P846, 'ExceptionHandler'
@@ -19631,10 +19631,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "variable"  :subid("60_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "variable"  :subid("60_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_873
 .annotate 'line', 318
-    .const 'Sub' $P886 = "61_1275117616.72633" 
+    .const 'Sub' $P886 = "61_1275160395.4197" 
     capture_lex $P886
     new $P872, 'ExceptionHandler'
     set_addr $P872, control_871
@@ -19658,7 +19658,7 @@
   vivify_313:
     if $P878, if_876
 .annotate 'line', 324
-    .const 'Sub' $P886 = "61_1275117616.72633" 
+    .const 'Sub' $P886 = "61_1275160395.4197" 
     capture_lex $P886
     $P886()
     goto if_876_end
@@ -19695,7 +19695,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block885"  :anon :subid("61_1275117616.72633") :outer("60_1275117616.72633")
+.sub "_block885"  :anon :subid("61_1275160395.4197") :outer("60_1275160395.4197")
 .annotate 'line', 325
     $P887 = root_new ['parrot';'ResizablePMCArray']
     .lex "@name", $P887
@@ -19864,7 +19864,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "package_declarator:sym<module>"  :subid("62_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "package_declarator:sym<module>"  :subid("62_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_962
 .annotate 'line', 356
     new $P961, 'ExceptionHandler'
@@ -19894,7 +19894,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "package_declarator:sym<class>"  :subid("63_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "package_declarator:sym<class>"  :subid("63_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_972
 .annotate 'line', 357
     new $P971, 'ExceptionHandler'
@@ -20051,7 +20051,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "package_def"  :subid("64_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "package_def"  :subid("64_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1025
 .annotate 'line', 380
     new $P1024, 'ExceptionHandler'
@@ -20129,7 +20129,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "scope_declarator:sym<my>"  :subid("65_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "scope_declarator:sym<my>"  :subid("65_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1049
 .annotate 'line', 387
     new $P1048, 'ExceptionHandler'
@@ -20159,7 +20159,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "scope_declarator:sym<our>"  :subid("66_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "scope_declarator:sym<our>"  :subid("66_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1059
 .annotate 'line', 388
     new $P1058, 'ExceptionHandler'
@@ -20189,7 +20189,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "scope_declarator:sym<has>"  :subid("67_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "scope_declarator:sym<has>"  :subid("67_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1069
 .annotate 'line', 389
     new $P1068, 'ExceptionHandler'
@@ -20219,7 +20219,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "scoped"  :subid("68_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "scoped"  :subid("68_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1079
 .annotate 'line', 391
     new $P1078, 'ExceptionHandler'
@@ -20251,7 +20251,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "declarator"  :subid("69_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "declarator"  :subid("69_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1089
 .annotate 'line', 395
     new $P1088, 'ExceptionHandler'
@@ -20309,10 +20309,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "variable_declarator"  :subid("70_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "variable_declarator"  :subid("70_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1106
 .annotate 'line', 401
-    .const 'Sub' $P1146 = "71_1275117616.72633" 
+    .const 'Sub' $P1146 = "71_1275160395.4197" 
     capture_lex $P1146
     new $P1105, 'ExceptionHandler'
     set_addr $P1105, control_1104
@@ -20394,7 +20394,7 @@
     iseq $I1131, $S1130, "has"
     if $I1131, if_1128
 .annotate 'line', 418
-    .const 'Sub' $P1146 = "71_1275117616.72633" 
+    .const 'Sub' $P1146 = "71_1275160395.4197" 
     capture_lex $P1146
     $P1146()
     goto if_1128_end
@@ -20454,7 +20454,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1145"  :anon :subid("71_1275117616.72633") :outer("70_1275117616.72633")
+.sub "_block1145"  :anon :subid("71_1275160395.4197") :outer("70_1275160395.4197")
 .annotate 'line', 419
     new $P1147, "Undef"
     .lex "$scope", $P1147
@@ -20515,7 +20515,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "routine_declarator:sym<sub>"  :subid("72_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "routine_declarator:sym<sub>"  :subid("72_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1177
 .annotate 'line', 429
     new $P1176, 'ExceptionHandler'
@@ -20545,7 +20545,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "routine_declarator:sym<method>"  :subid("73_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "routine_declarator:sym<method>"  :subid("73_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1187
 .annotate 'line', 430
     new $P1186, 'ExceptionHandler'
@@ -20575,10 +20575,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "routine_def"  :subid("74_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "routine_def"  :subid("74_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1197
 .annotate 'line', 432
-    .const 'Sub' $P1208 = "75_1275117616.72633" 
+    .const 'Sub' $P1208 = "75_1275160395.4197" 
     capture_lex $P1208
     new $P1196, 'ExceptionHandler'
     set_addr $P1196, control_1195
@@ -20615,7 +20615,7 @@
     new $P1206, "Undef"
   vivify_399:
     unless $P1206, if_1204_end
-    .const 'Sub' $P1208 = "75_1275117616.72633" 
+    .const 'Sub' $P1208 = "75_1275160395.4197" 
     capture_lex $P1208
     $P1208()
   if_1204_end:
@@ -20634,7 +20634,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1207"  :anon :subid("75_1275117616.72633") :outer("74_1275117616.72633")
+.sub "_block1207"  :anon :subid("75_1275160395.4197") :outer("74_1275160395.4197")
 .annotate 'line', 437
     new $P1209, "Undef"
     .lex "$name", $P1209
@@ -20730,10 +20730,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "method_def"  :subid("76_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "method_def"  :subid("76_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1247
 .annotate 'line', 450
-    .const 'Sub' $P1263 = "77_1275117616.72633" 
+    .const 'Sub' $P1263 = "77_1275160395.4197" 
     capture_lex $P1263
     new $P1246, 'ExceptionHandler'
     set_addr $P1246, control_1245
@@ -20785,7 +20785,7 @@
     new $P1261, "Undef"
   vivify_418:
     unless $P1261, if_1259_end
-    .const 'Sub' $P1263 = "77_1275117616.72633" 
+    .const 'Sub' $P1263 = "77_1275160395.4197" 
     capture_lex $P1263
     $P1263()
   if_1259_end:
@@ -20804,7 +20804,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1262"  :anon :subid("77_1275117616.72633") :outer("76_1275117616.72633")
+.sub "_block1262"  :anon :subid("77_1275160395.4197") :outer("76_1275160395.4197")
 .annotate 'line', 457
     new $P1264, "Undef"
     .lex "$name", $P1264
@@ -20835,10 +20835,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "signature"  :subid("78_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "signature"  :subid("78_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1281
 .annotate 'line', 464
-    .const 'Sub' $P1292 = "79_1275117616.72633" 
+    .const 'Sub' $P1292 = "79_1275160395.4197" 
     capture_lex $P1292
     new $P1280, 'ExceptionHandler'
     set_addr $P1280, control_1279
@@ -20882,7 +20882,7 @@
     unless $P1286, loop1298_done
     shift $P1290, $P1286
   loop1298_redo:
-    .const 'Sub' $P1292 = "79_1275117616.72633" 
+    .const 'Sub' $P1292 = "79_1275160395.4197" 
     capture_lex $P1292
     $P1292($P1290)
   loop1298_next:
@@ -20907,7 +20907,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1291"  :anon :subid("79_1275117616.72633") :outer("78_1275117616.72633")
+.sub "_block1291"  :anon :subid("79_1275160395.4197") :outer("78_1275160395.4197")
     .param pmc param_1293
 .annotate 'line', 466
     .lex "$_", param_1293
@@ -20920,7 +20920,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "parameter"  :subid("80_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "parameter"  :subid("80_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1305
 .annotate 'line', 469
     new $P1304, 'ExceptionHandler'
@@ -21152,7 +21152,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "param_var"  :subid("81_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "param_var"  :subid("81_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1389
 .annotate 'line', 501
     new $P1388, 'ExceptionHandler'
@@ -21205,7 +21205,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "named_param"  :subid("82_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "named_param"  :subid("82_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1409
 .annotate 'line', 509
     new $P1408, 'ExceptionHandler'
@@ -21258,14 +21258,14 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "regex_declarator"  :subid("83_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "regex_declarator"  :subid("83_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1426
     .param pmc param_1427 :optional
     .param int has_param_1427 :opt_flag
 .annotate 'line', 515
-    .const 'Sub' $P1497 = "85_1275117616.72633" 
+    .const 'Sub' $P1497 = "85_1275160395.4197" 
     capture_lex $P1497
-    .const 'Sub' $P1469 = "84_1275117616.72633" 
+    .const 'Sub' $P1469 = "84_1275160395.4197" 
     capture_lex $P1469
     new $P1425, 'ExceptionHandler'
     set_addr $P1425, control_1424
@@ -21323,13 +21323,13 @@
     iseq $I1467, $S1466, "open"
     if $I1467, if_1464
 .annotate 'line', 561
-    .const 'Sub' $P1497 = "85_1275117616.72633" 
+    .const 'Sub' $P1497 = "85_1275160395.4197" 
     capture_lex $P1497
     $P1497()
     goto if_1464_end
   if_1464:
 .annotate 'line', 548
-    .const 'Sub' $P1469 = "84_1275117616.72633" 
+    .const 'Sub' $P1469 = "84_1275160395.4197" 
     capture_lex $P1469
     $P1469()
   if_1464_end:
@@ -21386,7 +21386,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1496"  :anon :subid("85_1275117616.72633") :outer("83_1275117616.72633")
+.sub "_block1496"  :anon :subid("85_1275160395.4197") :outer("83_1275160395.4197")
 .annotate 'line', 562
     new $P1498, "Undef"
     .lex "$regex", $P1498
@@ -21437,7 +21437,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1468"  :anon :subid("84_1275117616.72633") :outer("83_1275117616.72633")
+.sub "_block1468"  :anon :subid("84_1275160395.4197") :outer("83_1275160395.4197")
 .annotate 'line', 549
     $P1470 = root_new ['parrot';'Hash']
     .lex "%h", $P1470
@@ -21535,7 +21535,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "dotty"  :subid("86_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "dotty"  :subid("86_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1525
 .annotate 'line', 579
     new $P1524, 'ExceptionHandler'
@@ -21632,7 +21632,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<self>"  :subid("87_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<self>"  :subid("87_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1557
 .annotate 'line', 588
     new $P1556, 'ExceptionHandler'
@@ -21657,7 +21657,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<identifier>"  :subid("88_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<identifier>"  :subid("88_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1566
 .annotate 'line', 592
     new $P1565, 'ExceptionHandler'
@@ -21706,7 +21706,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<name>"  :subid("89_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<name>"  :subid("89_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1582
 .annotate 'line', 598
     new $P1581, 'ExceptionHandler'
@@ -21824,7 +21824,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<pir::op>"  :subid("90_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<pir::op>"  :subid("90_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1624
 .annotate 'line', 612
     new $P1623, 'ExceptionHandler'
@@ -21915,7 +21915,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "args"  :subid("91_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "args"  :subid("91_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1653
 .annotate 'line', 627
     new $P1652, 'ExceptionHandler'
@@ -21945,10 +21945,10 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "arglist"  :subid("92_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "arglist"  :subid("92_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1663
 .annotate 'line', 629
-    .const 'Sub' $P1674 = "93_1275117616.72633" 
+    .const 'Sub' $P1674 = "93_1275160395.4197" 
     capture_lex $P1674
     new $P1662, 'ExceptionHandler'
     set_addr $P1662, control_1661
@@ -21980,7 +21980,7 @@
     new $P1672, "Undef"
   vivify_517:
     unless $P1672, if_1670_end
-    .const 'Sub' $P1674 = "93_1275117616.72633" 
+    .const 'Sub' $P1674 = "93_1275160395.4197" 
     capture_lex $P1674
     $P1674()
   if_1670_end:
@@ -22136,9 +22136,9 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1673"  :anon :subid("93_1275117616.72633") :outer("92_1275117616.72633")
+.sub "_block1673"  :anon :subid("93_1275160395.4197") :outer("92_1275160395.4197")
 .annotate 'line', 631
-    .const 'Sub' $P1695 = "94_1275117616.72633" 
+    .const 'Sub' $P1695 = "94_1275160395.4197" 
     capture_lex $P1695
 .annotate 'line', 632
     new $P1675, "Undef"
@@ -22191,7 +22191,7 @@
     unless $P1689, loop1700_done
     shift $P1693, $P1689
   loop1700_redo:
-    .const 'Sub' $P1695 = "94_1275117616.72633" 
+    .const 'Sub' $P1695 = "94_1275160395.4197" 
     capture_lex $P1695
     $P1695($P1693)
   loop1700_next:
@@ -22214,7 +22214,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block1694"  :anon :subid("94_1275117616.72633") :outer("93_1275117616.72633")
+.sub "_block1694"  :anon :subid("94_1275160395.4197") :outer("93_1275160395.4197")
     .param pmc param_1696
 .annotate 'line', 634
     .lex "$_", param_1696
@@ -22226,7 +22226,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<value>"  :subid("95_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<value>"  :subid("95_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1767
 .annotate 'line', 655
     new $P1766, 'ExceptionHandler'
@@ -22256,7 +22256,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "circumfix:sym<( )>"  :subid("96_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "circumfix:sym<( )>"  :subid("96_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1777
 .annotate 'line', 657
     new $P1776, 'ExceptionHandler'
@@ -22312,7 +22312,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "circumfix:sym<[ ]>"  :subid("97_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "circumfix:sym<[ ]>"  :subid("97_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1795
 .annotate 'line', 663
     new $P1794, 'ExceptionHandler'
@@ -22388,7 +22388,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "circumfix:sym<ang>"  :subid("98_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "circumfix:sym<ang>"  :subid("98_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1822
 .annotate 'line', 678
     new $P1821, 'ExceptionHandler'
@@ -22418,7 +22418,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub unicode:"circumfix:sym<\x{ab} \x{bb}>"  :subid("99_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub unicode:"circumfix:sym<\x{ab} \x{bb}>"  :subid("99_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1832
 .annotate 'line', 679
     new $P1831, 'ExceptionHandler'
@@ -22448,7 +22448,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "circumfix:sym<{ }>"  :subid("100_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "circumfix:sym<{ }>"  :subid("100_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1842
 .annotate 'line', 681
     new $P1841, 'ExceptionHandler'
@@ -22526,7 +22526,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "circumfix:sym<sigil>"  :subid("101_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "circumfix:sym<sigil>"  :subid("101_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1866
 .annotate 'line', 689
     new $P1865, 'ExceptionHandler'
@@ -22605,7 +22605,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "semilist"  :subid("102_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "semilist"  :subid("102_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1895
 .annotate 'line', 696
     new $P1894, 'ExceptionHandler'
@@ -22635,7 +22635,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postcircumfix:sym<[ ]>"  :subid("103_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postcircumfix:sym<[ ]>"  :subid("103_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1905
 .annotate 'line', 698
     new $P1904, 'ExceptionHandler'
@@ -22672,7 +22672,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postcircumfix:sym<{ }>"  :subid("104_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postcircumfix:sym<{ }>"  :subid("104_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1918
 .annotate 'line', 704
     new $P1917, 'ExceptionHandler'
@@ -22709,7 +22709,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postcircumfix:sym<ang>"  :subid("105_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postcircumfix:sym<ang>"  :subid("105_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1931
 .annotate 'line', 710
     new $P1930, 'ExceptionHandler'
@@ -22746,7 +22746,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postcircumfix:sym<( )>"  :subid("106_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postcircumfix:sym<( )>"  :subid("106_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1944
 .annotate 'line', 716
     new $P1943, 'ExceptionHandler'
@@ -22778,7 +22778,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "value"  :subid("107_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "value"  :subid("107_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1954
 .annotate 'line', 720
     new $P1953, 'ExceptionHandler'
@@ -22833,7 +22833,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "number"  :subid("108_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "number"  :subid("108_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1971
 .annotate 'line', 724
     new $P1970, 'ExceptionHandler'
@@ -22911,7 +22911,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<apos>"  :subid("109_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<apos>"  :subid("109_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_1999
 .annotate 'line', 730
     new $P1998, 'ExceptionHandler'
@@ -22941,7 +22941,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<dblq>"  :subid("110_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<dblq>"  :subid("110_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2009
 .annotate 'line', 731
     new $P2008, 'ExceptionHandler'
@@ -22971,7 +22971,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<qq>"  :subid("111_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<qq>"  :subid("111_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2019
 .annotate 'line', 732
     new $P2018, 'ExceptionHandler'
@@ -23001,7 +23001,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<q>"  :subid("112_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<q>"  :subid("112_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2029
 .annotate 'line', 733
     new $P2028, 'ExceptionHandler'
@@ -23031,7 +23031,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<Q>"  :subid("113_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<Q>"  :subid("113_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2039
 .annotate 'line', 734
     new $P2038, 'ExceptionHandler'
@@ -23061,7 +23061,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym<Q:PIR>"  :subid("114_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym<Q:PIR>"  :subid("114_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2049
 .annotate 'line', 735
     new $P2048, 'ExceptionHandler'
@@ -23097,7 +23097,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote:sym</ />"  :subid("115_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote:sym</ />"  :subid("115_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2063
     .param pmc param_2064 :optional
     .param int has_param_2064 :opt_flag
@@ -23206,7 +23206,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote_escape:sym<$>"  :subid("116_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote_escape:sym<$>"  :subid("116_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2100
 .annotate 'line', 764
     new $P2099, 'ExceptionHandler'
@@ -23236,7 +23236,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote_escape:sym<{ }>"  :subid("117_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote_escape:sym<{ }>"  :subid("117_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2110
 .annotate 'line', 765
     new $P2109, 'ExceptionHandler'
@@ -23274,7 +23274,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "quote_escape:sym<esc>"  :subid("118_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "quote_escape:sym<esc>"  :subid("118_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2124
 .annotate 'line', 770
     new $P2123, 'ExceptionHandler'
@@ -23295,7 +23295,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postfix:sym<.>"  :subid("119_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postfix:sym<.>"  :subid("119_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2131
 .annotate 'line', 774
     new $P2130, 'ExceptionHandler'
@@ -23325,7 +23325,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postfix:sym<++>"  :subid("120_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postfix:sym<++>"  :subid("120_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2141
 .annotate 'line', 776
     new $P2140, 'ExceptionHandler'
@@ -23355,7 +23355,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "postfix:sym<-->"  :subid("121_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "postfix:sym<-->"  :subid("121_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2151
 .annotate 'line', 782
     new $P2150, 'ExceptionHandler'
@@ -23385,7 +23385,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "prefix:sym<make>"  :subid("122_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "prefix:sym<make>"  :subid("122_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2161
 .annotate 'line', 788
     new $P2160, 'ExceptionHandler'
@@ -23415,7 +23415,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<next>"  :subid("123_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<next>"  :subid("123_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2174
 .annotate 'line', 810
     new $P2173, 'ExceptionHandler'
@@ -23436,7 +23436,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<last>"  :subid("124_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<last>"  :subid("124_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2181
 .annotate 'line', 811
     new $P2180, 'ExceptionHandler'
@@ -23457,7 +23457,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "term:sym<redo>"  :subid("125_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "term:sym<redo>"  :subid("125_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2188
 .annotate 'line', 812
     new $P2187, 'ExceptionHandler'
@@ -23478,7 +23478,7 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "infix:sym<~~>"  :subid("126_1275117616.72633") :method :outer("11_1275117616.72633")
+.sub "infix:sym<~~>"  :subid("126_1275160395.4197") :method :outer("11_1275160395.4197")
     .param pmc param_2195
 .annotate 'line', 814
     new $P2194, 'ExceptionHandler'
@@ -23504,24 +23504,24 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "_block2202"  :subid("127_1275117616.72633") :outer("11_1275117616.72633")
+.sub "_block2202"  :subid("127_1275160395.4197") :outer("11_1275160395.4197")
 .annotate 'line', 819
-    .const 'Sub' $P2287 = "134_1275117616.72633" 
+    .const 'Sub' $P2287 = "134_1275160395.4197" 
     capture_lex $P2287
-    .const 'Sub' $P2274 = "133_1275117616.72633" 
+    .const 'Sub' $P2274 = "133_1275160395.4197" 
     capture_lex $P2274
-    .const 'Sub' $P2257 = "132_1275117616.72633" 
+    .const 'Sub' $P2257 = "132_1275160395.4197" 
     capture_lex $P2257
-    .const 'Sub' $P2244 = "131_1275117616.72633" 
+    .const 'Sub' $P2244 = "131_1275160395.4197" 
     capture_lex $P2244
-    .const 'Sub' $P2231 = "130_1275117616.72633" 
+    .const 'Sub' $P2231 = "130_1275160395.4197" 
     capture_lex $P2231
-    .const 'Sub' $P2218 = "129_1275117616.72633" 
+    .const 'Sub' $P2218 = "129_1275160395.4197" 
     capture_lex $P2218
-    .const 'Sub' $P2204 = "128_1275117616.72633" 
+    .const 'Sub' $P2204 = "128_1275160395.4197" 
     capture_lex $P2204
 .annotate 'line', 852
-    .const 'Sub' $P2287 = "134_1275117616.72633" 
+    .const 'Sub' $P2287 = "134_1275160395.4197" 
     newclosure $P2312, $P2287
 .annotate 'line', 819
     .return ($P2312)
@@ -23529,7 +23529,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "metachar:sym<:my>"  :subid("128_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "metachar:sym<:my>"  :subid("128_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2207
 .annotate 'line', 821
     new $P2206, 'ExceptionHandler'
@@ -23568,7 +23568,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "metachar:sym<{ }>"  :subid("129_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "metachar:sym<{ }>"  :subid("129_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2221
 .annotate 'line', 826
     new $P2220, 'ExceptionHandler'
@@ -23603,7 +23603,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "metachar:sym<nqpvar>"  :subid("130_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "metachar:sym<nqpvar>"  :subid("130_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2234
 .annotate 'line', 831
     new $P2233, 'ExceptionHandler'
@@ -23638,7 +23638,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "assertion:sym<{ }>"  :subid("131_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "assertion:sym<{ }>"  :subid("131_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2247
 .annotate 'line', 836
     new $P2246, 'ExceptionHandler'
@@ -23673,7 +23673,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "assertion:sym<?{ }>"  :subid("132_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "assertion:sym<?{ }>"  :subid("132_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2260
 .annotate 'line', 841
     new $P2259, 'ExceptionHandler'
@@ -23720,7 +23720,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "assertion:sym<var>"  :subid("133_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "assertion:sym<var>"  :subid("133_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2277
 .annotate 'line', 847
     new $P2276, 'ExceptionHandler'
@@ -23755,7 +23755,7 @@
 
 
 .namespace ["NQP";"RegexActions"]
-.sub "codeblock"  :subid("134_1275117616.72633") :method :outer("127_1275117616.72633")
+.sub "codeblock"  :subid("134_1275160395.4197") :method :outer("127_1275160395.4197")
     .param pmc param_2290
 .annotate 'line', 852
     new $P2289, 'ExceptionHandler'
@@ -23819,18 +23819,18 @@
 
 
 .namespace ["NQP";"Actions"]
-.sub "_block2314" :load :anon :subid("135_1275117616.72633")
+.sub "_block2314" :load :anon :subid("135_1275160395.4197")
 .annotate 'line', 3
-    .const 'Sub' $P2316 = "11_1275117616.72633" 
+    .const 'Sub' $P2316 = "11_1275160395.4197" 
     $P2317 = $P2316()
     .return ($P2317)
 .end
 
 
 .namespace []
-.sub "_block2324" :load :anon :subid("137_1275117616.72633")
+.sub "_block2324" :load :anon :subid("137_1275160395.4197")
 .annotate 'line', 1
-    .const 'Sub' $P2326 = "10_1275117616.72633" 
+    .const 'Sub' $P2326 = "10_1275160395.4197" 
     $P2327 = $P2326()
     .return ($P2327)
 .end

Modified: branches/gc_massacre/ext/nqp-rx/src/stage0/P6Regex-s0.pir
==============================================================================
--- branches/gc_massacre/ext/nqp-rx/src/stage0/P6Regex-s0.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/ext/nqp-rx/src/stage0/P6Regex-s0.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -16,7 +16,7 @@
 ### .include 'gen/p6regex-grammar.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117582.32416")
+.sub "_block11"  :anon :subid("10_1275160376.16031")
 .annotate 'line', 0
     get_hll_global $P14, ["Regex";"P6Regex";"Grammar"], "_block13" 
     capture_lex $P14
@@ -33,15 +33,15 @@
     $P583 = $P14()
 .annotate 'line', 1
     .return ($P583)
-    .const 'Sub' $P585 = "159_1275117582.32416" 
+    .const 'Sub' $P585 = "159_1275160376.16031" 
     .return ($P585)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post160") :outer("10_1275117582.32416")
+.sub "" :load :init :subid("post160") :outer("10_1275160376.16031")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117582.32416" 
+    .const 'Sub' $P12 = "10_1275160376.16031" 
     .local pmc block
     set block, $P12
     $P588 = get_root_global ["parrot"], "P6metaclass"
@@ -50,131 +50,131 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block13"  :subid("11_1275117582.32416") :outer("10_1275117582.32416")
+.sub "_block13"  :subid("11_1275160376.16031") :outer("10_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P571 = "156_1275117582.32416" 
+    .const 'Sub' $P571 = "156_1275160376.16031" 
     capture_lex $P571
-    .const 'Sub' $P563 = "154_1275117582.32416" 
+    .const 'Sub' $P563 = "154_1275160376.16031" 
     capture_lex $P563
-    .const 'Sub' $P555 = "152_1275117582.32416" 
+    .const 'Sub' $P555 = "152_1275160376.16031" 
     capture_lex $P555
-    .const 'Sub' $P534 = "147_1275117582.32416" 
+    .const 'Sub' $P534 = "147_1275160376.16031" 
     capture_lex $P534
-    .const 'Sub' $P499 = "141_1275117582.32416" 
+    .const 'Sub' $P499 = "141_1275160376.16031" 
     capture_lex $P499
-    .const 'Sub' $P487 = "138_1275117582.32416" 
+    .const 'Sub' $P487 = "138_1275160376.16031" 
     capture_lex $P487
-    .const 'Sub' $P474 = "135_1275117582.32416" 
+    .const 'Sub' $P474 = "135_1275160376.16031" 
     capture_lex $P474
-    .const 'Sub' $P468 = "133_1275117582.32416" 
+    .const 'Sub' $P468 = "133_1275160376.16031" 
     capture_lex $P468
-    .const 'Sub' $P457 = "130_1275117582.32416" 
+    .const 'Sub' $P457 = "130_1275160376.16031" 
     capture_lex $P457
-    .const 'Sub' $P446 = "127_1275117582.32416" 
+    .const 'Sub' $P446 = "127_1275160376.16031" 
     capture_lex $P446
-    .const 'Sub' $P437 = "123_1275117582.32416" 
+    .const 'Sub' $P437 = "123_1275160376.16031" 
     capture_lex $P437
-    .const 'Sub' $P431 = "121_1275117582.32416" 
+    .const 'Sub' $P431 = "121_1275160376.16031" 
     capture_lex $P431
-    .const 'Sub' $P425 = "119_1275117582.32416" 
+    .const 'Sub' $P425 = "119_1275160376.16031" 
     capture_lex $P425
-    .const 'Sub' $P419 = "117_1275117582.32416" 
+    .const 'Sub' $P419 = "117_1275160376.16031" 
     capture_lex $P419
-    .const 'Sub' $P413 = "115_1275117582.32416" 
+    .const 'Sub' $P413 = "115_1275160376.16031" 
     capture_lex $P413
-    .const 'Sub' $P405 = "113_1275117582.32416" 
+    .const 'Sub' $P405 = "113_1275160376.16031" 
     capture_lex $P405
-    .const 'Sub' $P394 = "111_1275117582.32416" 
+    .const 'Sub' $P394 = "111_1275160376.16031" 
     capture_lex $P394
-    .const 'Sub' $P383 = "109_1275117582.32416" 
+    .const 'Sub' $P383 = "109_1275160376.16031" 
     capture_lex $P383
-    .const 'Sub' $P377 = "107_1275117582.32416" 
+    .const 'Sub' $P377 = "107_1275160376.16031" 
     capture_lex $P377
-    .const 'Sub' $P371 = "105_1275117582.32416" 
+    .const 'Sub' $P371 = "105_1275160376.16031" 
     capture_lex $P371
-    .const 'Sub' $P365 = "103_1275117582.32416" 
+    .const 'Sub' $P365 = "103_1275160376.16031" 
     capture_lex $P365
-    .const 'Sub' $P359 = "101_1275117582.32416" 
+    .const 'Sub' $P359 = "101_1275160376.16031" 
     capture_lex $P359
-    .const 'Sub' $P353 = "99_1275117582.32416" 
+    .const 'Sub' $P353 = "99_1275160376.16031" 
     capture_lex $P353
-    .const 'Sub' $P347 = "97_1275117582.32416" 
+    .const 'Sub' $P347 = "97_1275160376.16031" 
     capture_lex $P347
-    .const 'Sub' $P341 = "95_1275117582.32416" 
+    .const 'Sub' $P341 = "95_1275160376.16031" 
     capture_lex $P341
-    .const 'Sub' $P335 = "93_1275117582.32416" 
+    .const 'Sub' $P335 = "93_1275160376.16031" 
     capture_lex $P335
-    .const 'Sub' $P323 = "89_1275117582.32416" 
+    .const 'Sub' $P323 = "89_1275160376.16031" 
     capture_lex $P323
-    .const 'Sub' $P311 = "87_1275117582.32416" 
+    .const 'Sub' $P311 = "87_1275160376.16031" 
     capture_lex $P311
-    .const 'Sub' $P304 = "85_1275117582.32416" 
+    .const 'Sub' $P304 = "85_1275160376.16031" 
     capture_lex $P304
-    .const 'Sub' $P287 = "83_1275117582.32416" 
+    .const 'Sub' $P287 = "83_1275160376.16031" 
     capture_lex $P287
-    .const 'Sub' $P280 = "81_1275117582.32416" 
+    .const 'Sub' $P280 = "81_1275160376.16031" 
     capture_lex $P280
-    .const 'Sub' $P274 = "79_1275117582.32416" 
+    .const 'Sub' $P274 = "79_1275160376.16031" 
     capture_lex $P274
-    .const 'Sub' $P268 = "77_1275117582.32416" 
+    .const 'Sub' $P268 = "77_1275160376.16031" 
     capture_lex $P268
-    .const 'Sub' $P261 = "75_1275117582.32416" 
+    .const 'Sub' $P261 = "75_1275160376.16031" 
     capture_lex $P261
-    .const 'Sub' $P254 = "73_1275117582.32416" 
+    .const 'Sub' $P254 = "73_1275160376.16031" 
     capture_lex $P254
-    .const 'Sub' $P247 = "71_1275117582.32416" 
+    .const 'Sub' $P247 = "71_1275160376.16031" 
     capture_lex $P247
-    .const 'Sub' $P240 = "69_1275117582.32416" 
+    .const 'Sub' $P240 = "69_1275160376.16031" 
     capture_lex $P240
-    .const 'Sub' $P234 = "67_1275117582.32416" 
+    .const 'Sub' $P234 = "67_1275160376.16031" 
     capture_lex $P234
-    .const 'Sub' $P228 = "65_1275117582.32416" 
+    .const 'Sub' $P228 = "65_1275160376.16031" 
     capture_lex $P228
-    .const 'Sub' $P222 = "63_1275117582.32416" 
+    .const 'Sub' $P222 = "63_1275160376.16031" 
     capture_lex $P222
-    .const 'Sub' $P216 = "61_1275117582.32416" 
+    .const 'Sub' $P216 = "61_1275160376.16031" 
     capture_lex $P216
-    .const 'Sub' $P210 = "59_1275117582.32416" 
+    .const 'Sub' $P210 = "59_1275160376.16031" 
     capture_lex $P210
-    .const 'Sub' $P205 = "57_1275117582.32416" 
+    .const 'Sub' $P205 = "57_1275160376.16031" 
     capture_lex $P205
-    .const 'Sub' $P200 = "55_1275117582.32416" 
+    .const 'Sub' $P200 = "55_1275160376.16031" 
     capture_lex $P200
-    .const 'Sub' $P194 = "53_1275117582.32416" 
+    .const 'Sub' $P194 = "53_1275160376.16031" 
     capture_lex $P194
-    .const 'Sub' $P188 = "51_1275117582.32416" 
+    .const 'Sub' $P188 = "51_1275160376.16031" 
     capture_lex $P188
-    .const 'Sub' $P182 = "49_1275117582.32416" 
+    .const 'Sub' $P182 = "49_1275160376.16031" 
     capture_lex $P182
-    .const 'Sub' $P166 = "44_1275117582.32416" 
+    .const 'Sub' $P166 = "44_1275160376.16031" 
     capture_lex $P166
-    .const 'Sub' $P154 = "42_1275117582.32416" 
+    .const 'Sub' $P154 = "42_1275160376.16031" 
     capture_lex $P154
-    .const 'Sub' $P147 = "40_1275117582.32416" 
+    .const 'Sub' $P147 = "40_1275160376.16031" 
     capture_lex $P147
-    .const 'Sub' $P140 = "38_1275117582.32416" 
+    .const 'Sub' $P140 = "38_1275160376.16031" 
     capture_lex $P140
-    .const 'Sub' $P133 = "36_1275117582.32416" 
+    .const 'Sub' $P133 = "36_1275160376.16031" 
     capture_lex $P133
-    .const 'Sub' $P114 = "31_1275117582.32416" 
+    .const 'Sub' $P114 = "31_1275160376.16031" 
     capture_lex $P114
-    .const 'Sub' $P101 = "28_1275117582.32416" 
+    .const 'Sub' $P101 = "28_1275160376.16031" 
     capture_lex $P101
-    .const 'Sub' $P94 = "26_1275117582.32416" 
+    .const 'Sub' $P94 = "26_1275160376.16031" 
     capture_lex $P94
-    .const 'Sub' $P82 = "24_1275117582.32416" 
+    .const 'Sub' $P82 = "24_1275160376.16031" 
     capture_lex $P82
-    .const 'Sub' $P75 = "22_1275117582.32416" 
+    .const 'Sub' $P75 = "22_1275160376.16031" 
     capture_lex $P75
-    .const 'Sub' $P63 = "20_1275117582.32416" 
+    .const 'Sub' $P63 = "20_1275160376.16031" 
     capture_lex $P63
-    .const 'Sub' $P56 = "18_1275117582.32416" 
+    .const 'Sub' $P56 = "18_1275160376.16031" 
     capture_lex $P56
-    .const 'Sub' $P46 = "15_1275117582.32416" 
+    .const 'Sub' $P46 = "15_1275160376.16031" 
     capture_lex $P46
-    .const 'Sub' $P38 = "13_1275117582.32416" 
+    .const 'Sub' $P38 = "13_1275160376.16031" 
     capture_lex $P38
-    .const 'Sub' $P15 = "12_1275117582.32416" 
+    .const 'Sub' $P15 = "12_1275160376.16031" 
     capture_lex $P15
     $P0 = find_dynamic_lex "$*CTXSAVE"
     if null $P0 goto ctxsave_done
@@ -182,16 +182,16 @@
     unless $I0 goto ctxsave_done
     $P0."ctxsave"()
   ctxsave_done:
-    .const 'Sub' $P571 = "156_1275117582.32416" 
+    .const 'Sub' $P571 = "156_1275160376.16031" 
     capture_lex $P571
     .return ($P571)
-    .const 'Sub' $P580 = "158_1275117582.32416" 
+    .const 'Sub' $P580 = "158_1275160376.16031" 
     .return ($P580)
 .end
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "obs"  :subid("12_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "obs"  :subid("12_1275160376.16031") :method :outer("11_1275160376.16031")
     .param pmc param_18
     .param pmc param_19
     .param pmc param_20 :optional
@@ -239,7 +239,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "ws"  :subid("13_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "ws"  :subid("13_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx39_tgt
     .local int rx39_pos
@@ -321,7 +321,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__ws"  :subid("14_1275117582.32416") :method
+.sub "!PREFIX__ws"  :subid("14_1275160376.16031") :method
 .annotate 'line', 3
     new $P41, "ResizablePMCArray"
     push $P41, ""
@@ -330,9 +330,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "normspace"  :subid("15_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "normspace"  :subid("15_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P52 = "17_1275117582.32416" 
+    .const 'Sub' $P52 = "17_1275160376.16031" 
     capture_lex $P52
     .local string rx47_tgt
     .local int rx47_pos
@@ -366,7 +366,7 @@
 .annotate 'line', 10
   # rx subrule "before" subtype=zerowidth negate=
     rx47_cur."!cursor_pos"(rx47_pos)
-    .const 'Sub' $P52 = "17_1275117582.32416" 
+    .const 'Sub' $P52 = "17_1275160376.16031" 
     capture_lex $P52
     $P10 = rx47_cur."before"($P52)
     unless $P10, rx47_fail
@@ -394,7 +394,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__normspace"  :subid("16_1275117582.32416") :method
+.sub "!PREFIX__normspace"  :subid("16_1275160376.16031") :method
 .annotate 'line', 3
     new $P49, "ResizablePMCArray"
     push $P49, ""
@@ -403,7 +403,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block51"  :anon :subid("17_1275117582.32416") :method :outer("15_1275117582.32416")
+.sub "_block51"  :anon :subid("17_1275160376.16031") :method :outer("15_1275160376.16031")
 .annotate 'line', 10
     .local string rx53_tgt
     .local int rx53_pos
@@ -471,7 +471,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "arg"  :subid("18_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "arg"  :subid("18_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx57_tgt
     .local int rx57_pos
@@ -582,7 +582,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__arg"  :subid("19_1275117582.32416") :method
+.sub "!PREFIX__arg"  :subid("19_1275160376.16031") :method
 .annotate 'line', 3
     new $P59, "ResizablePMCArray"
     push $P59, ""
@@ -593,7 +593,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "arglist"  :subid("20_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "arglist"  :subid("20_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx64_tgt
     .local int rx64_pos
@@ -699,7 +699,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__arglist"  :subid("21_1275117582.32416") :method
+.sub "!PREFIX__arglist"  :subid("21_1275160376.16031") :method
 .annotate 'line', 3
     new $P66, "ResizablePMCArray"
     push $P66, ""
@@ -708,7 +708,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "TOP"  :subid("22_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "TOP"  :subid("22_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx76_tgt
     .local int rx76_pos
@@ -781,7 +781,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__TOP"  :subid("23_1275117582.32416") :method
+.sub "!PREFIX__TOP"  :subid("23_1275160376.16031") :method
 .annotate 'line', 3
     $P78 = self."!PREFIX__!subrule"("nibbler", "")
     new $P79, "ResizablePMCArray"
@@ -791,7 +791,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "nibbler"  :subid("24_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "nibbler"  :subid("24_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx83_tgt
     .local int rx83_pos
@@ -959,7 +959,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__nibbler"  :subid("25_1275117582.32416") :method
+.sub "!PREFIX__nibbler"  :subid("25_1275160376.16031") :method
 .annotate 'line', 3
     new $P85, "ResizablePMCArray"
     push $P85, ""
@@ -968,7 +968,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "termish"  :subid("26_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "termish"  :subid("26_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx95_tgt
     .local int rx95_pos
@@ -1036,7 +1036,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__termish"  :subid("27_1275117582.32416") :method
+.sub "!PREFIX__termish"  :subid("27_1275160376.16031") :method
 .annotate 'line', 3
     new $P97, "ResizablePMCArray"
     push $P97, ""
@@ -1045,9 +1045,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantified_atom"  :subid("28_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "quantified_atom"  :subid("28_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P110 = "30_1275117582.32416" 
+    .const 'Sub' $P110 = "30_1275160376.16031" 
     capture_lex $P110
     .local string rx102_tgt
     .local int rx102_pos
@@ -1110,7 +1110,7 @@
   alt108_1:
   # rx subrule "before" subtype=zerowidth negate=
     rx102_cur."!cursor_pos"(rx102_pos)
-    .const 'Sub' $P110 = "30_1275117582.32416" 
+    .const 'Sub' $P110 = "30_1275160376.16031" 
     capture_lex $P110
     $P10 = rx102_cur."before"($P110)
     unless $P10, rx102_fail
@@ -1148,7 +1148,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantified_atom"  :subid("29_1275117582.32416") :method
+.sub "!PREFIX__quantified_atom"  :subid("29_1275160376.16031") :method
 .annotate 'line', 3
     $P104 = self."!PREFIX__!subrule"("atom", "")
     new $P105, "ResizablePMCArray"
@@ -1158,7 +1158,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block109"  :anon :subid("30_1275117582.32416") :method :outer("28_1275117582.32416")
+.sub "_block109"  :anon :subid("30_1275160376.16031") :method :outer("28_1275160376.16031")
 .annotate 'line', 41
     .local string rx111_tgt
     .local int rx111_pos
@@ -1214,9 +1214,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "atom"  :subid("31_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "atom"  :subid("31_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P125 = "33_1275117582.32416" 
+    .const 'Sub' $P125 = "33_1275160376.16031" 
     capture_lex $P125
     .local string rx115_tgt
     .local int rx115_pos
@@ -1276,7 +1276,7 @@
   rxquantg122_done:
   # rx subrule "before" subtype=zerowidth negate=
     rx115_cur."!cursor_pos"(rx115_pos)
-    .const 'Sub' $P125 = "33_1275117582.32416" 
+    .const 'Sub' $P125 = "33_1275160376.16031" 
     capture_lex $P125
     $P10 = rx115_cur."before"($P125)
     unless $P10, rx115_fail
@@ -1313,7 +1313,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__atom"  :subid("32_1275117582.32416") :method
+.sub "!PREFIX__atom"  :subid("32_1275160376.16031") :method
 .annotate 'line', 3
     $P117 = self."!PREFIX__!subrule"("metachar", "")
     new $P118, "ResizablePMCArray"
@@ -1324,7 +1324,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block124"  :anon :subid("33_1275117582.32416") :method :outer("31_1275117582.32416")
+.sub "_block124"  :anon :subid("33_1275160376.16031") :method :outer("31_1275160376.16031")
 .annotate 'line', 47
     .local string rx126_tgt
     .local int rx126_pos
@@ -1379,7 +1379,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantifier"  :subid("34_1275117582.32416") :method
+.sub "quantifier"  :subid("34_1275160376.16031") :method
 .annotate 'line', 52
     $P130 = self."!protoregex"("quantifier")
     .return ($P130)
@@ -1387,7 +1387,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantifier"  :subid("35_1275117582.32416") :method
+.sub "!PREFIX__quantifier"  :subid("35_1275160376.16031") :method
 .annotate 'line', 52
     $P132 = self."!PREFIX__!protoregex"("quantifier")
     .return ($P132)
@@ -1395,7 +1395,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantifier:sym<*>"  :subid("36_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "quantifier:sym<*>"  :subid("36_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx134_tgt
     .local int rx134_pos
@@ -1474,7 +1474,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantifier:sym<*>"  :subid("37_1275117582.32416") :method
+.sub "!PREFIX__quantifier:sym<*>"  :subid("37_1275160376.16031") :method
 .annotate 'line', 3
     $P136 = self."!PREFIX__!subrule"("backmod", "*")
     new $P137, "ResizablePMCArray"
@@ -1484,7 +1484,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantifier:sym<+>"  :subid("38_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "quantifier:sym<+>"  :subid("38_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx141_tgt
     .local int rx141_pos
@@ -1563,7 +1563,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantifier:sym<+>"  :subid("39_1275117582.32416") :method
+.sub "!PREFIX__quantifier:sym<+>"  :subid("39_1275160376.16031") :method
 .annotate 'line', 3
     $P143 = self."!PREFIX__!subrule"("backmod", "+")
     new $P144, "ResizablePMCArray"
@@ -1573,7 +1573,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantifier:sym<?>"  :subid("40_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "quantifier:sym<?>"  :subid("40_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx148_tgt
     .local int rx148_pos
@@ -1652,7 +1652,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantifier:sym<?>"  :subid("41_1275117582.32416") :method
+.sub "!PREFIX__quantifier:sym<?>"  :subid("41_1275160376.16031") :method
 .annotate 'line', 3
     $P150 = self."!PREFIX__!subrule"("backmod", "?")
     new $P151, "ResizablePMCArray"
@@ -1662,7 +1662,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "quantifier:sym<**>"  :subid("42_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "quantifier:sym<**>"  :subid("42_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx155_tgt
     .local int rx155_pos
@@ -1851,7 +1851,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__quantifier:sym<**>"  :subid("43_1275117582.32416") :method
+.sub "!PREFIX__quantifier:sym<**>"  :subid("43_1275160376.16031") :method
 .annotate 'line', 3
     new $P157, "ResizablePMCArray"
     push $P157, "**"
@@ -1860,9 +1860,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backmod"  :subid("44_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backmod"  :subid("44_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P175 = "46_1275117582.32416" 
+    .const 'Sub' $P175 = "46_1275160376.16031" 
     capture_lex $P175
     .local string rx167_tgt
     .local int rx167_pos
@@ -1932,7 +1932,7 @@
   alt173_2:
   # rx subrule "before" subtype=zerowidth negate=1
     rx167_cur."!cursor_pos"(rx167_pos)
-    .const 'Sub' $P175 = "46_1275117582.32416" 
+    .const 'Sub' $P175 = "46_1275160376.16031" 
     capture_lex $P175
     $P10 = rx167_cur."before"($P175)
     if $P10, rx167_fail
@@ -1956,7 +1956,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backmod"  :subid("45_1275117582.32416") :method
+.sub "!PREFIX__backmod"  :subid("45_1275160376.16031") :method
 .annotate 'line', 3
     new $P169, "ResizablePMCArray"
     push $P169, ""
@@ -1965,7 +1965,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block174"  :anon :subid("46_1275117582.32416") :method :outer("44_1275117582.32416")
+.sub "_block174"  :anon :subid("46_1275160376.16031") :method :outer("44_1275160376.16031")
 .annotate 'line', 71
     .local string rx176_tgt
     .local int rx176_pos
@@ -2021,7 +2021,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar"  :subid("47_1275117582.32416") :method
+.sub "metachar"  :subid("47_1275160376.16031") :method
 .annotate 'line', 73
     $P179 = self."!protoregex"("metachar")
     .return ($P179)
@@ -2029,7 +2029,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar"  :subid("48_1275117582.32416") :method
+.sub "!PREFIX__metachar"  :subid("48_1275160376.16031") :method
 .annotate 'line', 73
     $P181 = self."!PREFIX__!protoregex"("metachar")
     .return ($P181)
@@ -2037,7 +2037,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<ws>"  :subid("49_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<ws>"  :subid("49_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx183_tgt
     .local int rx183_pos
@@ -2093,7 +2093,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<ws>"  :subid("50_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<ws>"  :subid("50_1275160376.16031") :method
 .annotate 'line', 3
     $P185 = self."!PREFIX__!subrule"("", "")
     new $P186, "ResizablePMCArray"
@@ -2103,7 +2103,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<[ ]>"  :subid("51_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<[ ]>"  :subid("51_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx189_tgt
     .local int rx189_pos
@@ -2175,7 +2175,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<[ ]>"  :subid("52_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<[ ]>"  :subid("52_1275160376.16031") :method
 .annotate 'line', 3
     $P191 = self."!PREFIX__!subrule"("nibbler", "[")
     new $P192, "ResizablePMCArray"
@@ -2185,7 +2185,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<( )>"  :subid("53_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<( )>"  :subid("53_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx195_tgt
     .local int rx195_pos
@@ -2257,7 +2257,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<( )>"  :subid("54_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<( )>"  :subid("54_1275160376.16031") :method
 .annotate 'line', 3
     $P197 = self."!PREFIX__!subrule"("nibbler", "(")
     new $P198, "ResizablePMCArray"
@@ -2267,7 +2267,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<'>"  :subid("55_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<'>"  :subid("55_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx201_tgt
     .local int rx201_pos
@@ -2331,7 +2331,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<'>"  :subid("56_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<'>"  :subid("56_1275160376.16031") :method
 .annotate 'line', 3
     new $P203, "ResizablePMCArray"
     push $P203, "'"
@@ -2340,7 +2340,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<\">"  :subid("57_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<\">"  :subid("57_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx206_tgt
     .local int rx206_pos
@@ -2404,7 +2404,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<\">"  :subid("58_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<\">"  :subid("58_1275160376.16031") :method
 .annotate 'line', 3
     new $P208, "ResizablePMCArray"
     push $P208, "\""
@@ -2413,7 +2413,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<.>"  :subid("59_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<.>"  :subid("59_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx211_tgt
     .local int rx211_pos
@@ -2485,7 +2485,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<.>"  :subid("60_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<.>"  :subid("60_1275160376.16031") :method
 .annotate 'line', 3
     new $P213, "ResizablePMCArray"
     push $P213, "."
@@ -2494,7 +2494,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<^>"  :subid("61_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<^>"  :subid("61_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx217_tgt
     .local int rx217_pos
@@ -2566,7 +2566,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<^>"  :subid("62_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<^>"  :subid("62_1275160376.16031") :method
 .annotate 'line', 3
     new $P219, "ResizablePMCArray"
     push $P219, "^"
@@ -2575,7 +2575,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<^^>"  :subid("63_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<^^>"  :subid("63_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx223_tgt
     .local int rx223_pos
@@ -2647,7 +2647,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<^^>"  :subid("64_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<^^>"  :subid("64_1275160376.16031") :method
 .annotate 'line', 3
     new $P225, "ResizablePMCArray"
     push $P225, "^^"
@@ -2656,7 +2656,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<$>"  :subid("65_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<$>"  :subid("65_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx229_tgt
     .local int rx229_pos
@@ -2728,7 +2728,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<$>"  :subid("66_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<$>"  :subid("66_1275160376.16031") :method
 .annotate 'line', 3
     new $P231, "ResizablePMCArray"
     push $P231, "$"
@@ -2737,7 +2737,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<$$>"  :subid("67_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<$$>"  :subid("67_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx235_tgt
     .local int rx235_pos
@@ -2809,7 +2809,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<$$>"  :subid("68_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<$$>"  :subid("68_1275160376.16031") :method
 .annotate 'line', 3
     new $P237, "ResizablePMCArray"
     push $P237, "$$"
@@ -2818,7 +2818,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<:::>"  :subid("69_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<:::>"  :subid("69_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx241_tgt
     .local int rx241_pos
@@ -2895,7 +2895,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<:::>"  :subid("70_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<:::>"  :subid("70_1275160376.16031") :method
 .annotate 'line', 3
     $P243 = self."!PREFIX__!subrule"("", ":::")
     new $P244, "ResizablePMCArray"
@@ -2905,7 +2905,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<::>"  :subid("71_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<::>"  :subid("71_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx248_tgt
     .local int rx248_pos
@@ -2982,7 +2982,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<::>"  :subid("72_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<::>"  :subid("72_1275160376.16031") :method
 .annotate 'line', 3
     $P250 = self."!PREFIX__!subrule"("", "::")
     new $P251, "ResizablePMCArray"
@@ -2992,7 +2992,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<lwb>"  :subid("73_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<lwb>"  :subid("73_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx255_tgt
     .local int rx255_pos
@@ -3077,7 +3077,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<lwb>"  :subid("74_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<lwb>"  :subid("74_1275160376.16031") :method
 .annotate 'line', 3
     new $P257, "ResizablePMCArray"
     push $P257, unicode:"\x{ab}"
@@ -3087,7 +3087,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<rwb>"  :subid("75_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<rwb>"  :subid("75_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx262_tgt
     .local int rx262_pos
@@ -3172,7 +3172,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<rwb>"  :subid("76_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<rwb>"  :subid("76_1275160376.16031") :method
 .annotate 'line', 3
     new $P264, "ResizablePMCArray"
     push $P264, unicode:"\x{bb}"
@@ -3182,7 +3182,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<bs>"  :subid("77_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<bs>"  :subid("77_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx269_tgt
     .local int rx269_pos
@@ -3247,7 +3247,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<bs>"  :subid("78_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<bs>"  :subid("78_1275160376.16031") :method
 .annotate 'line', 3
     $P271 = self."!PREFIX__!subrule"("backslash", "\\")
     new $P272, "ResizablePMCArray"
@@ -3257,7 +3257,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<mod>"  :subid("79_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<mod>"  :subid("79_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx275_tgt
     .local int rx275_pos
@@ -3315,7 +3315,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<mod>"  :subid("80_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<mod>"  :subid("80_1275160376.16031") :method
 .annotate 'line', 3
     $P277 = self."!PREFIX__!subrule"("mod_internal", "")
     new $P278, "ResizablePMCArray"
@@ -3325,7 +3325,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<~>"  :subid("81_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<~>"  :subid("81_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx281_tgt
     .local int rx281_pos
@@ -3424,7 +3424,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<~>"  :subid("82_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<~>"  :subid("82_1275160376.16031") :method
 .annotate 'line', 3
     $P283 = self."!PREFIX__!subrule"("", "~")
     new $P284, "ResizablePMCArray"
@@ -3434,7 +3434,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<{*}>"  :subid("83_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<{*}>"  :subid("83_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx288_tgt
     .local int rx288_pos
@@ -3601,7 +3601,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<{*}>"  :subid("84_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<{*}>"  :subid("84_1275160376.16031") :method
 .annotate 'line', 3
     new $P290, "ResizablePMCArray"
     push $P290, "{*}"
@@ -3610,7 +3610,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<assert>"  :subid("85_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<assert>"  :subid("85_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx305_tgt
     .local int rx305_pos
@@ -3695,7 +3695,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<assert>"  :subid("86_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<assert>"  :subid("86_1275160376.16031") :method
 .annotate 'line', 3
     $P307 = self."!PREFIX__!subrule"("assertion", "<")
     new $P308, "ResizablePMCArray"
@@ -3705,7 +3705,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<var>"  :subid("87_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<var>"  :subid("87_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx312_tgt
     .local int rx312_pos
@@ -3867,7 +3867,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<var>"  :subid("88_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<var>"  :subid("88_1275160376.16031") :method
 .annotate 'line', 3
     new $P314, "ResizablePMCArray"
     push $P314, "$"
@@ -3877,7 +3877,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "metachar:sym<PIR>"  :subid("89_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "metachar:sym<PIR>"  :subid("89_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx324_tgt
     .local int rx324_pos
@@ -3968,7 +3968,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__metachar:sym<PIR>"  :subid("90_1275117582.32416") :method
+.sub "!PREFIX__metachar:sym<PIR>"  :subid("90_1275160376.16031") :method
 .annotate 'line', 3
     new $P326, "ResizablePMCArray"
     push $P326, ":PIR{{"
@@ -3977,7 +3977,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash"  :subid("91_1275117582.32416") :method
+.sub "backslash"  :subid("91_1275160376.16031") :method
 .annotate 'line', 120
     $P332 = self."!protoregex"("backslash")
     .return ($P332)
@@ -3985,7 +3985,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash"  :subid("92_1275117582.32416") :method
+.sub "!PREFIX__backslash"  :subid("92_1275160376.16031") :method
 .annotate 'line', 120
     $P334 = self."!PREFIX__!protoregex"("backslash")
     .return ($P334)
@@ -3993,7 +3993,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<w>"  :subid("93_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<w>"  :subid("93_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx336_tgt
     .local int rx336_pos
@@ -4065,7 +4065,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<w>"  :subid("94_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<w>"  :subid("94_1275160376.16031") :method
 .annotate 'line', 3
     new $P338, "ResizablePMCArray"
     push $P338, "N"
@@ -4081,7 +4081,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<b>"  :subid("95_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<b>"  :subid("95_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx342_tgt
     .local int rx342_pos
@@ -4153,7 +4153,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<b>"  :subid("96_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<b>"  :subid("96_1275160376.16031") :method
 .annotate 'line', 3
     new $P344, "ResizablePMCArray"
     push $P344, "B"
@@ -4163,7 +4163,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<e>"  :subid("97_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<e>"  :subid("97_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx348_tgt
     .local int rx348_pos
@@ -4235,7 +4235,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<e>"  :subid("98_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<e>"  :subid("98_1275160376.16031") :method
 .annotate 'line', 3
     new $P350, "ResizablePMCArray"
     push $P350, "E"
@@ -4245,7 +4245,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<f>"  :subid("99_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<f>"  :subid("99_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx354_tgt
     .local int rx354_pos
@@ -4317,7 +4317,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<f>"  :subid("100_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<f>"  :subid("100_1275160376.16031") :method
 .annotate 'line', 3
     new $P356, "ResizablePMCArray"
     push $P356, "F"
@@ -4327,7 +4327,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<h>"  :subid("101_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<h>"  :subid("101_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx360_tgt
     .local int rx360_pos
@@ -4399,7 +4399,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<h>"  :subid("102_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<h>"  :subid("102_1275160376.16031") :method
 .annotate 'line', 3
     new $P362, "ResizablePMCArray"
     push $P362, "H"
@@ -4409,7 +4409,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<r>"  :subid("103_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<r>"  :subid("103_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx366_tgt
     .local int rx366_pos
@@ -4481,7 +4481,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<r>"  :subid("104_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<r>"  :subid("104_1275160376.16031") :method
 .annotate 'line', 3
     new $P368, "ResizablePMCArray"
     push $P368, "R"
@@ -4491,7 +4491,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<t>"  :subid("105_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<t>"  :subid("105_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx372_tgt
     .local int rx372_pos
@@ -4563,7 +4563,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<t>"  :subid("106_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<t>"  :subid("106_1275160376.16031") :method
 .annotate 'line', 3
     new $P374, "ResizablePMCArray"
     push $P374, "T"
@@ -4573,7 +4573,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<v>"  :subid("107_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<v>"  :subid("107_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx378_tgt
     .local int rx378_pos
@@ -4645,7 +4645,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<v>"  :subid("108_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<v>"  :subid("108_1275160376.16031") :method
 .annotate 'line', 3
     new $P380, "ResizablePMCArray"
     push $P380, "V"
@@ -4655,7 +4655,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<o>"  :subid("109_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<o>"  :subid("109_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx384_tgt
     .local int rx384_pos
@@ -4761,7 +4761,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<o>"  :subid("110_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<o>"  :subid("110_1275160376.16031") :method
 .annotate 'line', 3
     $P386 = self."!PREFIX__!subrule"("octints", "O[")
     $P387 = self."!PREFIX__!subrule"("octint", "O")
@@ -4777,7 +4777,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<x>"  :subid("111_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<x>"  :subid("111_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx395_tgt
     .local int rx395_pos
@@ -4883,7 +4883,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<x>"  :subid("112_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<x>"  :subid("112_1275160376.16031") :method
 .annotate 'line', 3
     $P397 = self."!PREFIX__!subrule"("hexints", "X[")
     $P398 = self."!PREFIX__!subrule"("hexint", "X")
@@ -4899,7 +4899,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<c>"  :subid("113_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<c>"  :subid("113_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx406_tgt
     .local int rx406_pos
@@ -4978,7 +4978,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<c>"  :subid("114_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<c>"  :subid("114_1275160376.16031") :method
 .annotate 'line', 3
     $P408 = self."!PREFIX__!subrule"("charspec", "C")
     $P409 = self."!PREFIX__!subrule"("charspec", "c")
@@ -4990,7 +4990,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<A>"  :subid("115_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<A>"  :subid("115_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx414_tgt
     .local int rx414_pos
@@ -5053,7 +5053,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<A>"  :subid("116_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<A>"  :subid("116_1275160376.16031") :method
 .annotate 'line', 3
     $P416 = self."!PREFIX__!subrule"("", "A")
     new $P417, "ResizablePMCArray"
@@ -5063,7 +5063,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<z>"  :subid("117_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<z>"  :subid("117_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx420_tgt
     .local int rx420_pos
@@ -5126,7 +5126,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<z>"  :subid("118_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<z>"  :subid("118_1275160376.16031") :method
 .annotate 'line', 3
     $P422 = self."!PREFIX__!subrule"("", "z")
     new $P423, "ResizablePMCArray"
@@ -5136,7 +5136,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<Z>"  :subid("119_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<Z>"  :subid("119_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx426_tgt
     .local int rx426_pos
@@ -5199,7 +5199,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<Z>"  :subid("120_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<Z>"  :subid("120_1275160376.16031") :method
 .annotate 'line', 3
     $P428 = self."!PREFIX__!subrule"("", "Z")
     new $P429, "ResizablePMCArray"
@@ -5209,7 +5209,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<Q>"  :subid("121_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<Q>"  :subid("121_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx432_tgt
     .local int rx432_pos
@@ -5272,7 +5272,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<Q>"  :subid("122_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<Q>"  :subid("122_1275160376.16031") :method
 .annotate 'line', 3
     $P434 = self."!PREFIX__!subrule"("", "Q")
     new $P435, "ResizablePMCArray"
@@ -5282,7 +5282,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "backslash:sym<misc>"  :subid("123_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "backslash:sym<misc>"  :subid("123_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx438_tgt
     .local int rx438_pos
@@ -5339,7 +5339,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__backslash:sym<misc>"  :subid("124_1275117582.32416") :method
+.sub "!PREFIX__backslash:sym<misc>"  :subid("124_1275160376.16031") :method
 .annotate 'line', 3
     new $P440, "ResizablePMCArray"
     push $P440, ""
@@ -5348,7 +5348,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion"  :subid("125_1275117582.32416") :method
+.sub "assertion"  :subid("125_1275160376.16031") :method
 .annotate 'line', 138
     $P443 = self."!protoregex"("assertion")
     .return ($P443)
@@ -5356,7 +5356,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion"  :subid("126_1275117582.32416") :method
+.sub "!PREFIX__assertion"  :subid("126_1275160376.16031") :method
 .annotate 'line', 138
     $P445 = self."!PREFIX__!protoregex"("assertion")
     .return ($P445)
@@ -5364,9 +5364,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion:sym<?>"  :subid("127_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "assertion:sym<?>"  :subid("127_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P454 = "129_1275117582.32416" 
+    .const 'Sub' $P454 = "129_1275160376.16031" 
     capture_lex $P454
     .local string rx447_tgt
     .local int rx447_pos
@@ -5410,7 +5410,7 @@
     rx447_cur."!mark_push"(0, rx447_pos, $I10)
   # rx subrule "before" subtype=zerowidth negate=
     rx447_cur."!cursor_pos"(rx447_pos)
-    .const 'Sub' $P454 = "129_1275117582.32416" 
+    .const 'Sub' $P454 = "129_1275160376.16031" 
     capture_lex $P454
     $P10 = rx447_cur."before"($P454)
     unless $P10, rx447_fail
@@ -5443,7 +5443,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion:sym<?>"  :subid("128_1275117582.32416") :method
+.sub "!PREFIX__assertion:sym<?>"  :subid("128_1275160376.16031") :method
 .annotate 'line', 3
     $P449 = self."!PREFIX__!subrule"("assertion", "?")
     new $P450, "ResizablePMCArray"
@@ -5454,7 +5454,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block453"  :anon :subid("129_1275117582.32416") :method :outer("127_1275117582.32416")
+.sub "_block453"  :anon :subid("129_1275160376.16031") :method :outer("127_1275160376.16031")
 .annotate 'line', 140
     .local string rx455_tgt
     .local int rx455_pos
@@ -5510,9 +5510,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion:sym<!>"  :subid("130_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "assertion:sym<!>"  :subid("130_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P465 = "132_1275117582.32416" 
+    .const 'Sub' $P465 = "132_1275160376.16031" 
     capture_lex $P465
     .local string rx458_tgt
     .local int rx458_pos
@@ -5556,7 +5556,7 @@
     rx458_cur."!mark_push"(0, rx458_pos, $I10)
   # rx subrule "before" subtype=zerowidth negate=
     rx458_cur."!cursor_pos"(rx458_pos)
-    .const 'Sub' $P465 = "132_1275117582.32416" 
+    .const 'Sub' $P465 = "132_1275160376.16031" 
     capture_lex $P465
     $P10 = rx458_cur."before"($P465)
     unless $P10, rx458_fail
@@ -5589,7 +5589,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion:sym<!>"  :subid("131_1275117582.32416") :method
+.sub "!PREFIX__assertion:sym<!>"  :subid("131_1275160376.16031") :method
 .annotate 'line', 3
     $P460 = self."!PREFIX__!subrule"("assertion", "!")
     new $P461, "ResizablePMCArray"
@@ -5600,7 +5600,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block464"  :anon :subid("132_1275117582.32416") :method :outer("130_1275117582.32416")
+.sub "_block464"  :anon :subid("132_1275160376.16031") :method :outer("130_1275160376.16031")
 .annotate 'line', 141
     .local string rx466_tgt
     .local int rx466_pos
@@ -5656,7 +5656,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion:sym<method>"  :subid("133_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "assertion:sym<method>"  :subid("133_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx469_tgt
     .local int rx469_pos
@@ -5722,7 +5722,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion:sym<method>"  :subid("134_1275117582.32416") :method
+.sub "!PREFIX__assertion:sym<method>"  :subid("134_1275160376.16031") :method
 .annotate 'line', 3
     $P471 = self."!PREFIX__!subrule"("assertion", ".")
     new $P472, "ResizablePMCArray"
@@ -5732,9 +5732,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion:sym<name>"  :subid("135_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "assertion:sym<name>"  :subid("135_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P483 = "137_1275117582.32416" 
+    .const 'Sub' $P483 = "137_1275160376.16031" 
     capture_lex $P483
     .local string rx475_tgt
     .local int rx475_pos
@@ -5744,7 +5744,7 @@
     .local pmc rx475_cur
     (rx475_cur, rx475_pos, rx475_tgt) = self."!cursor_start"()
     rx475_cur."!cursor_debug"("START ", "assertion:sym<name>")
-    rx475_cur."!cursor_caparray"("nibbler", "arglist", "assertion")
+    rx475_cur."!cursor_caparray"("assertion", "nibbler", "arglist")
     .lex unicode:"$\x{a2}", rx475_cur
     .local pmc match
     .lex "$/", match
@@ -5799,7 +5799,7 @@
 .annotate 'line', 150
   # rx subrule "before" subtype=zerowidth negate=
     rx475_cur."!cursor_pos"(rx475_pos)
-    .const 'Sub' $P483 = "137_1275117582.32416" 
+    .const 'Sub' $P483 = "137_1275160376.16031" 
     capture_lex $P483
     $P10 = rx475_cur."before"($P483)
     unless $P10, rx475_fail
@@ -5906,7 +5906,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion:sym<name>"  :subid("136_1275117582.32416") :method
+.sub "!PREFIX__assertion:sym<name>"  :subid("136_1275160376.16031") :method
 .annotate 'line', 3
     new $P477, "ResizablePMCArray"
     push $P477, ""
@@ -5915,7 +5915,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block482"  :anon :subid("137_1275117582.32416") :method :outer("135_1275117582.32416")
+.sub "_block482"  :anon :subid("137_1275160376.16031") :method :outer("135_1275160376.16031")
 .annotate 'line', 150
     .local string rx484_tgt
     .local int rx484_pos
@@ -5971,9 +5971,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "assertion:sym<[>"  :subid("138_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "assertion:sym<[>"  :subid("138_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P493 = "140_1275117582.32416" 
+    .const 'Sub' $P493 = "140_1275160376.16031" 
     capture_lex $P493
     .local string rx488_tgt
     .local int rx488_pos
@@ -6008,7 +6008,7 @@
 .annotate 'line', 158
   # rx subrule "before" subtype=zerowidth negate=
     rx488_cur."!cursor_pos"(rx488_pos)
-    .const 'Sub' $P493 = "140_1275117582.32416" 
+    .const 'Sub' $P493 = "140_1275160376.16031" 
     capture_lex $P493
     $P10 = rx488_cur."before"($P493)
     unless $P10, rx488_fail
@@ -6046,7 +6046,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__assertion:sym<[>"  :subid("139_1275117582.32416") :method
+.sub "!PREFIX__assertion:sym<[>"  :subid("139_1275160376.16031") :method
 .annotate 'line', 3
     new $P490, "ResizablePMCArray"
     push $P490, ""
@@ -6055,7 +6055,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block492"  :anon :subid("140_1275117582.32416") :method :outer("138_1275117582.32416")
+.sub "_block492"  :anon :subid("140_1275160376.16031") :method :outer("138_1275160376.16031")
 .annotate 'line', 158
     .local string rx494_tgt
     .local int rx494_pos
@@ -6135,9 +6135,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "cclass_elem"  :subid("141_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "cclass_elem"  :subid("141_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P511 = "143_1275117582.32416" 
+    .const 'Sub' $P511 = "143_1275160376.16031" 
     capture_lex $P511
     .local string rx500_tgt
     .local int rx500_pos
@@ -6240,7 +6240,7 @@
 .annotate 'line', 164
   # rx subrule $P511 subtype=capture negate=
     rx500_cur."!cursor_pos"(rx500_pos)
-    .const 'Sub' $P511 = "143_1275117582.32416" 
+    .const 'Sub' $P511 = "143_1275160376.16031" 
     capture_lex $P511
     $P10 = rx500_cur.$P511()
     unless $P10, rx500_fail
@@ -6321,7 +6321,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__cclass_elem"  :subid("142_1275117582.32416") :method
+.sub "!PREFIX__cclass_elem"  :subid("142_1275160376.16031") :method
 .annotate 'line', 3
     new $P502, "ResizablePMCArray"
     push $P502, ""
@@ -6332,13 +6332,13 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block510"  :anon :subid("143_1275117582.32416") :method :outer("141_1275117582.32416")
+.sub "_block510"  :anon :subid("143_1275160376.16031") :method :outer("141_1275160376.16031")
 .annotate 'line', 164
-    .const 'Sub' $P526 = "146_1275117582.32416" 
+    .const 'Sub' $P526 = "146_1275160376.16031" 
     capture_lex $P526
-    .const 'Sub' $P521 = "145_1275117582.32416" 
+    .const 'Sub' $P521 = "145_1275160376.16031" 
     capture_lex $P521
-    .const 'Sub' $P517 = "144_1275117582.32416" 
+    .const 'Sub' $P517 = "144_1275160376.16031" 
     capture_lex $P517
     .local string rx512_tgt
     .local int rx512_pos
@@ -6409,7 +6409,7 @@
     add rx512_pos, 1
   # rx subrule $P517 subtype=capture negate=
     rx512_cur."!cursor_pos"(rx512_pos)
-    .const 'Sub' $P517 = "144_1275117582.32416" 
+    .const 'Sub' $P517 = "144_1275160376.16031" 
     capture_lex $P517
     $P10 = rx512_cur.$P517()
     unless $P10, rx512_fail
@@ -6420,7 +6420,7 @@
   alt515_1:
   # rx subrule $P521 subtype=capture negate=
     rx512_cur."!cursor_pos"(rx512_pos)
-    .const 'Sub' $P521 = "145_1275117582.32416" 
+    .const 'Sub' $P521 = "145_1275160376.16031" 
     capture_lex $P521
     $P10 = rx512_cur.$P521()
     unless $P10, rx512_fail
@@ -6449,7 +6449,7 @@
     add rx512_pos, rx512_off, $I11
   # rx subrule $P526 subtype=capture negate=
     rx512_cur."!cursor_pos"(rx512_pos)
-    .const 'Sub' $P526 = "146_1275117582.32416" 
+    .const 'Sub' $P526 = "146_1275160376.16031" 
     capture_lex $P526
     $P10 = rx512_cur.$P526()
     unless $P10, rx512_fail
@@ -6478,7 +6478,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block516"  :anon :subid("144_1275117582.32416") :method :outer("143_1275117582.32416")
+.sub "_block516"  :anon :subid("144_1275160376.16031") :method :outer("143_1275160376.16031")
 .annotate 'line', 166
     .local string rx518_tgt
     .local int rx518_pos
@@ -6530,7 +6530,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block520"  :anon :subid("145_1275117582.32416") :method :outer("143_1275117582.32416")
+.sub "_block520"  :anon :subid("145_1275160376.16031") :method :outer("143_1275160376.16031")
 .annotate 'line', 166
     .local string rx522_tgt
     .local int rx522_pos
@@ -6586,7 +6586,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block525"  :anon :subid("146_1275117582.32416") :method :outer("143_1275117582.32416")
+.sub "_block525"  :anon :subid("146_1275160376.16031") :method :outer("143_1275160376.16031")
 .annotate 'line', 166
     .local string rx527_tgt
     .local int rx527_pos
@@ -6638,9 +6638,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "mod_internal"  :subid("147_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "mod_internal"  :subid("147_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P543 = "149_1275117582.32416" 
+    .const 'Sub' $P543 = "149_1275160376.16031" 
     capture_lex $P543
     .local string rx535_tgt
     .local int rx535_pos
@@ -6690,7 +6690,7 @@
   rxquantr541_loop:
   # rx subrule $P543 subtype=capture negate=
     rx535_cur."!cursor_pos"(rx535_pos)
-    .const 'Sub' $P543 = "149_1275117582.32416" 
+    .const 'Sub' $P543 = "149_1275160376.16031" 
     capture_lex $P543
     $P10 = rx535_cur.$P543()
     unless $P10, rx535_fail
@@ -6792,7 +6792,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__mod_internal"  :subid("148_1275117582.32416") :method
+.sub "!PREFIX__mod_internal"  :subid("148_1275160376.16031") :method
 .annotate 'line', 3
     $P537 = self."!PREFIX__!subrule"("mod_ident", ":")
     new $P538, "ResizablePMCArray"
@@ -6803,7 +6803,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block542"  :anon :subid("149_1275117582.32416") :method :outer("147_1275117582.32416")
+.sub "_block542"  :anon :subid("149_1275160376.16031") :method :outer("147_1275160376.16031")
 .annotate 'line', 176
     .local string rx544_tgt
     .local int rx544_pos
@@ -6871,7 +6871,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "mod_ident"  :subid("150_1275117582.32416") :method
+.sub "mod_ident"  :subid("150_1275160376.16031") :method
 .annotate 'line', 181
     $P552 = self."!protoregex"("mod_ident")
     .return ($P552)
@@ -6879,7 +6879,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__mod_ident"  :subid("151_1275117582.32416") :method
+.sub "!PREFIX__mod_ident"  :subid("151_1275160376.16031") :method
 .annotate 'line', 181
     $P554 = self."!PREFIX__!protoregex"("mod_ident")
     .return ($P554)
@@ -6887,7 +6887,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "mod_ident:sym<ignorecase>"  :subid("152_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "mod_ident:sym<ignorecase>"  :subid("152_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx556_tgt
     .local int rx556_pos
@@ -6972,7 +6972,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__mod_ident:sym<ignorecase>"  :subid("153_1275117582.32416") :method
+.sub "!PREFIX__mod_ident:sym<ignorecase>"  :subid("153_1275160376.16031") :method
 .annotate 'line', 3
     new $P558, "ResizablePMCArray"
     push $P558, "i"
@@ -6981,7 +6981,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "mod_ident:sym<ratchet>"  :subid("154_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "mod_ident:sym<ratchet>"  :subid("154_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx564_tgt
     .local int rx564_pos
@@ -7066,7 +7066,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__mod_ident:sym<ratchet>"  :subid("155_1275117582.32416") :method
+.sub "!PREFIX__mod_ident:sym<ratchet>"  :subid("155_1275160376.16031") :method
 .annotate 'line', 3
     new $P566, "ResizablePMCArray"
     push $P566, "r"
@@ -7075,7 +7075,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "mod_ident:sym<sigspace>"  :subid("156_1275117582.32416") :method :outer("11_1275117582.32416")
+.sub "mod_ident:sym<sigspace>"  :subid("156_1275160376.16031") :method :outer("11_1275160376.16031")
 .annotate 'line', 3
     .local string rx572_tgt
     .local int rx572_pos
@@ -7160,7 +7160,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "!PREFIX__mod_ident:sym<sigspace>"  :subid("157_1275117582.32416") :method
+.sub "!PREFIX__mod_ident:sym<sigspace>"  :subid("157_1275160376.16031") :method
 .annotate 'line', 3
     new $P574, "ResizablePMCArray"
     push $P574, "s"
@@ -7169,18 +7169,18 @@
 
 
 .namespace ["Regex";"P6Regex";"Grammar"]
-.sub "_block579" :load :anon :subid("158_1275117582.32416")
+.sub "_block579" :load :anon :subid("158_1275160376.16031")
 .annotate 'line', 3
-    .const 'Sub' $P581 = "11_1275117582.32416" 
+    .const 'Sub' $P581 = "11_1275160376.16031" 
     $P582 = $P581()
     .return ($P582)
 .end
 
 
 .namespace []
-.sub "_block584" :load :anon :subid("159_1275117582.32416")
+.sub "_block584" :load :anon :subid("159_1275160376.16031")
 .annotate 'line', 1
-    .const 'Sub' $P586 = "10_1275117582.32416" 
+    .const 'Sub' $P586 = "10_1275160376.16031" 
     $P587 = $P586()
     .return ($P587)
 .end
@@ -7188,7 +7188,7 @@
 ### .include 'gen/p6regex-actions.pir'
 
 .namespace []
-.sub "_block11"  :anon :subid("10_1275117600.18794")
+.sub "_block11"  :anon :subid("10_1275160387.00648")
 .annotate 'line', 0
     get_hll_global $P14, ["Regex";"P6Regex";"Actions"], "_block13" 
     capture_lex $P14
@@ -7205,15 +7205,15 @@
     $P1573 = $P14()
 .annotate 'line', 1
     .return ($P1573)
-    .const 'Sub' $P1575 = "90_1275117600.18794" 
+    .const 'Sub' $P1575 = "90_1275160387.00648" 
     .return ($P1575)
 .end
 
 
 .namespace []
-.sub "" :load :init :subid("post91") :outer("10_1275117600.18794")
+.sub "" :load :init :subid("post91") :outer("10_1275160387.00648")
 .annotate 'line', 0
-    .const 'Sub' $P12 = "10_1275117600.18794" 
+    .const 'Sub' $P12 = "10_1275160387.00648" 
     .local pmc block
     set block, $P12
     $P1578 = get_root_global ["parrot"], "P6metaclass"
@@ -7222,115 +7222,115 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block13"  :subid("11_1275117600.18794") :outer("10_1275117600.18794")
+.sub "_block13"  :subid("11_1275160387.00648") :outer("10_1275160387.00648")
 .annotate 'line', 4
-    .const 'Sub' $P1535 = "88_1275117600.18794" 
+    .const 'Sub' $P1535 = "88_1275160387.00648" 
     capture_lex $P1535
-    .const 'Sub' $P1466 = "84_1275117600.18794" 
+    .const 'Sub' $P1466 = "84_1275160387.00648" 
     capture_lex $P1466
-    .const 'Sub' $P1398 = "82_1275117600.18794" 
+    .const 'Sub' $P1398 = "82_1275160387.00648" 
     capture_lex $P1398
-    .const 'Sub' $P1325 = "79_1275117600.18794" 
+    .const 'Sub' $P1325 = "79_1275160387.00648" 
     capture_lex $P1325
-    .const 'Sub' $P1311 = "78_1275117600.18794" 
+    .const 'Sub' $P1311 = "78_1275160387.00648" 
     capture_lex $P1311
-    .const 'Sub' $P1287 = "77_1275117600.18794" 
+    .const 'Sub' $P1287 = "77_1275160387.00648" 
     capture_lex $P1287
-    .const 'Sub' $P1269 = "76_1275117600.18794" 
+    .const 'Sub' $P1269 = "76_1275160387.00648" 
     capture_lex $P1269
-    .const 'Sub' $P1255 = "75_1275117600.18794" 
+    .const 'Sub' $P1255 = "75_1275160387.00648" 
     capture_lex $P1255
-    .const 'Sub' $P1242 = "74_1275117600.18794" 
+    .const 'Sub' $P1242 = "74_1275160387.00648" 
     capture_lex $P1242
-    .const 'Sub' $P1211 = "73_1275117600.18794" 
+    .const 'Sub' $P1211 = "73_1275160387.00648" 
     capture_lex $P1211
-    .const 'Sub' $P1180 = "72_1275117600.18794" 
+    .const 'Sub' $P1180 = "72_1275160387.00648" 
     capture_lex $P1180
-    .const 'Sub' $P1164 = "71_1275117600.18794" 
+    .const 'Sub' $P1164 = "71_1275160387.00648" 
     capture_lex $P1164
-    .const 'Sub' $P1148 = "70_1275117600.18794" 
+    .const 'Sub' $P1148 = "70_1275160387.00648" 
     capture_lex $P1148
-    .const 'Sub' $P1132 = "69_1275117600.18794" 
+    .const 'Sub' $P1132 = "69_1275160387.00648" 
     capture_lex $P1132
-    .const 'Sub' $P1116 = "68_1275117600.18794" 
+    .const 'Sub' $P1116 = "68_1275160387.00648" 
     capture_lex $P1116
-    .const 'Sub' $P1100 = "67_1275117600.18794" 
+    .const 'Sub' $P1100 = "67_1275160387.00648" 
     capture_lex $P1100
-    .const 'Sub' $P1084 = "66_1275117600.18794" 
+    .const 'Sub' $P1084 = "66_1275160387.00648" 
     capture_lex $P1084
-    .const 'Sub' $P1068 = "65_1275117600.18794" 
+    .const 'Sub' $P1068 = "65_1275160387.00648" 
     capture_lex $P1068
-    .const 'Sub' $P1044 = "64_1275117600.18794" 
+    .const 'Sub' $P1044 = "64_1275160387.00648" 
     capture_lex $P1044
-    .const 'Sub' $P1029 = "63_1275117600.18794" 
+    .const 'Sub' $P1029 = "63_1275160387.00648" 
     capture_lex $P1029
-    .const 'Sub' $P973 = "62_1275117600.18794" 
+    .const 'Sub' $P973 = "62_1275160387.00648" 
     capture_lex $P973
-    .const 'Sub' $P952 = "61_1275117600.18794" 
+    .const 'Sub' $P952 = "61_1275160387.00648" 
     capture_lex $P952
-    .const 'Sub' $P930 = "60_1275117600.18794" 
+    .const 'Sub' $P930 = "60_1275160387.00648" 
     capture_lex $P930
-    .const 'Sub' $P920 = "59_1275117600.18794" 
+    .const 'Sub' $P920 = "59_1275160387.00648" 
     capture_lex $P920
-    .const 'Sub' $P910 = "58_1275117600.18794" 
+    .const 'Sub' $P910 = "58_1275160387.00648" 
     capture_lex $P910
-    .const 'Sub' $P900 = "57_1275117600.18794" 
+    .const 'Sub' $P900 = "57_1275160387.00648" 
     capture_lex $P900
-    .const 'Sub' $P888 = "56_1275117600.18794" 
+    .const 'Sub' $P888 = "56_1275160387.00648" 
     capture_lex $P888
-    .const 'Sub' $P876 = "55_1275117600.18794" 
+    .const 'Sub' $P876 = "55_1275160387.00648" 
     capture_lex $P876
-    .const 'Sub' $P864 = "54_1275117600.18794" 
+    .const 'Sub' $P864 = "54_1275160387.00648" 
     capture_lex $P864
-    .const 'Sub' $P852 = "53_1275117600.18794" 
+    .const 'Sub' $P852 = "53_1275160387.00648" 
     capture_lex $P852
-    .const 'Sub' $P840 = "52_1275117600.18794" 
+    .const 'Sub' $P840 = "52_1275160387.00648" 
     capture_lex $P840
-    .const 'Sub' $P828 = "51_1275117600.18794" 
+    .const 'Sub' $P828 = "51_1275160387.00648" 
     capture_lex $P828
-    .const 'Sub' $P816 = "50_1275117600.18794" 
+    .const 'Sub' $P816 = "50_1275160387.00648" 
     capture_lex $P816
-    .const 'Sub' $P804 = "49_1275117600.18794" 
+    .const 'Sub' $P804 = "49_1275160387.00648" 
     capture_lex $P804
-    .const 'Sub' $P781 = "48_1275117600.18794" 
+    .const 'Sub' $P781 = "48_1275160387.00648" 
     capture_lex $P781
-    .const 'Sub' $P758 = "47_1275117600.18794" 
+    .const 'Sub' $P758 = "47_1275160387.00648" 
     capture_lex $P758
-    .const 'Sub' $P740 = "46_1275117600.18794" 
+    .const 'Sub' $P740 = "46_1275160387.00648" 
     capture_lex $P740
-    .const 'Sub' $P730 = "45_1275117600.18794" 
+    .const 'Sub' $P730 = "45_1275160387.00648" 
     capture_lex $P730
-    .const 'Sub' $P712 = "44_1275117600.18794" 
+    .const 'Sub' $P712 = "44_1275160387.00648" 
     capture_lex $P712
-    .const 'Sub' $P665 = "43_1275117600.18794" 
+    .const 'Sub' $P665 = "43_1275160387.00648" 
     capture_lex $P665
-    .const 'Sub' $P648 = "42_1275117600.18794" 
+    .const 'Sub' $P648 = "42_1275160387.00648" 
     capture_lex $P648
-    .const 'Sub' $P633 = "41_1275117600.18794" 
+    .const 'Sub' $P633 = "41_1275160387.00648" 
     capture_lex $P633
-    .const 'Sub' $P618 = "40_1275117600.18794" 
+    .const 'Sub' $P618 = "40_1275160387.00648" 
     capture_lex $P618
-    .const 'Sub' $P592 = "39_1275117600.18794" 
+    .const 'Sub' $P592 = "39_1275160387.00648" 
     capture_lex $P592
-    .const 'Sub' $P541 = "37_1275117600.18794" 
+    .const 'Sub' $P541 = "37_1275160387.00648" 
     capture_lex $P541
-    .const 'Sub' $P473 = "35_1275117600.18794" 
+    .const 'Sub' $P473 = "35_1275160387.00648" 
     capture_lex $P473
-    .const 'Sub' $P418 = "32_1275117600.18794" 
+    .const 'Sub' $P418 = "32_1275160387.00648" 
     capture_lex $P418
-    .const 'Sub' $P403 = "31_1275117600.18794" 
+    .const 'Sub' $P403 = "31_1275160387.00648" 
     capture_lex $P403
-    .const 'Sub' $P377 = "29_1275117600.18794" 
+    .const 'Sub' $P377 = "29_1275160387.00648" 
     capture_lex $P377
-    .const 'Sub' $P360 = "28_1275117600.18794" 
+    .const 'Sub' $P360 = "28_1275160387.00648" 
     capture_lex $P360
-    .const 'Sub' $P338 = "27_1275117600.18794" 
+    .const 'Sub' $P338 = "27_1275160387.00648" 
     capture_lex $P338
-    .const 'Sub' $P305 = "26_1275117600.18794" 
+    .const 'Sub' $P305 = "26_1275160387.00648" 
     capture_lex $P305
-    .const 'Sub' $P50 = "13_1275117600.18794" 
+    .const 'Sub' $P50 = "13_1275160387.00648" 
     capture_lex $P50
-    .const 'Sub' $P16 = "12_1275117600.18794" 
+    .const 'Sub' $P16 = "12_1275160387.00648" 
     capture_lex $P16
     get_global $P15, "@MODIFIERS"
     unless_null $P15, vivify_93
@@ -7338,19 +7338,19 @@
     set_global "@MODIFIERS", $P15
   vivify_93:
 .annotate 'line', 479
-    .const 'Sub' $P16 = "12_1275117600.18794" 
+    .const 'Sub' $P16 = "12_1275160387.00648" 
     newclosure $P49, $P16
     .lex "buildsub", $P49
 .annotate 'line', 496
-    .const 'Sub' $P50 = "13_1275117600.18794" 
+    .const 'Sub' $P50 = "13_1275160387.00648" 
     newclosure $P304, $P50
     .lex "capnames", $P304
 .annotate 'line', 562
-    .const 'Sub' $P305 = "26_1275117600.18794" 
+    .const 'Sub' $P305 = "26_1275160387.00648" 
     newclosure $P337, $P305
     .lex "backmod", $P337
 .annotate 'line', 569
-    .const 'Sub' $P338 = "27_1275117600.18794" 
+    .const 'Sub' $P338 = "27_1275160387.00648" 
     newclosure $P358, $P338
     .lex "subrule_alias", $P358
 .annotate 'line', 4
@@ -7368,13 +7368,13 @@
     find_lex $P1567, "subrule_alias"
 .annotate 'line', 4
     .return ($P1567)
-    .const 'Sub' $P1569 = "89_1275117600.18794" 
+    .const 'Sub' $P1569 = "89_1275160387.00648" 
     .return ($P1569)
 .end
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "" :load :init :subid("post92") :outer("11_1275117600.18794")
+.sub "" :load :init :subid("post92") :outer("11_1275160387.00648")
 .annotate 'line', 4
     get_hll_global $P14, ["Regex";"P6Regex";"Actions"], "_block13" 
     .local pmc block
@@ -7390,7 +7390,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "buildsub"  :subid("12_1275117600.18794") :outer("11_1275117600.18794")
+.sub "buildsub"  :subid("12_1275160387.00648") :outer("11_1275160387.00648")
     .param pmc param_19
     .param pmc param_20 :optional
     .param int has_param_20 :opt_flag
@@ -7467,19 +7467,19 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "capnames"  :subid("13_1275117600.18794") :outer("11_1275117600.18794")
+.sub "capnames"  :subid("13_1275160387.00648") :outer("11_1275160387.00648")
     .param pmc param_53
     .param pmc param_54
 .annotate 'line', 496
-    .const 'Sub' $P279 = "24_1275117600.18794" 
+    .const 'Sub' $P279 = "24_1275160387.00648" 
     capture_lex $P279
-    .const 'Sub' $P216 = "21_1275117600.18794" 
+    .const 'Sub' $P216 = "21_1275160387.00648" 
     capture_lex $P216
-    .const 'Sub' $P174 = "19_1275117600.18794" 
+    .const 'Sub' $P174 = "19_1275160387.00648" 
     capture_lex $P174
-    .const 'Sub' $P132 = "17_1275117600.18794" 
+    .const 'Sub' $P132 = "17_1275160387.00648" 
     capture_lex $P132
-    .const 'Sub' $P65 = "14_1275117600.18794" 
+    .const 'Sub' $P65 = "14_1275160387.00648" 
     capture_lex $P65
     new $P52, 'ExceptionHandler'
     set_addr $P52, control_51
@@ -7535,21 +7535,21 @@
     set $S276, $P275
     iseq $I277, $S276, "quant"
     unless $I277, if_274_end
-    .const 'Sub' $P279 = "24_1275117600.18794" 
+    .const 'Sub' $P279 = "24_1275160387.00648" 
     capture_lex $P279
     $P279()
   if_274_end:
     goto if_211_end
   if_211:
 .annotate 'line', 534
-    .const 'Sub' $P216 = "21_1275117600.18794" 
+    .const 'Sub' $P216 = "21_1275160387.00648" 
     capture_lex $P216
     $P216()
   if_211_end:
     goto if_164_end
   if_164:
 .annotate 'line', 521
-    .const 'Sub' $P174 = "19_1275117600.18794" 
+    .const 'Sub' $P174 = "19_1275160387.00648" 
     capture_lex $P174
     $P174()
   if_164_end:
@@ -7569,7 +7569,7 @@
     unless $P126, loop161_done
     shift $P130, $P126
   loop161_redo:
-    .const 'Sub' $P132 = "17_1275117600.18794" 
+    .const 'Sub' $P132 = "17_1275160387.00648" 
     capture_lex $P132
     $P132($P130)
   loop161_next:
@@ -7588,7 +7588,7 @@
     goto if_60_end
   if_60:
 .annotate 'line', 499
-    .const 'Sub' $P65 = "14_1275117600.18794" 
+    .const 'Sub' $P65 = "14_1275160387.00648" 
     capture_lex $P65
     $P65()
   if_60_end:
@@ -7612,9 +7612,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block278"  :anon :subid("24_1275117600.18794") :outer("13_1275117600.18794")
+.sub "_block278"  :anon :subid("24_1275160387.00648") :outer("13_1275160387.00648")
 .annotate 'line', 551
-    .const 'Sub' $P290 = "25_1275117600.18794" 
+    .const 'Sub' $P290 = "25_1275160387.00648" 
     capture_lex $P290
 .annotate 'line', 552
     $P280 = root_new ['parrot';'Hash']
@@ -7643,7 +7643,7 @@
     unless $P285, loop295_done
     shift $P288, $P285
   loop295_redo:
-    .const 'Sub' $P290 = "25_1275117600.18794" 
+    .const 'Sub' $P290 = "25_1275160387.00648" 
     capture_lex $P290
     $P290($P288)
   loop295_next:
@@ -7673,7 +7673,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block289"  :anon :subid("25_1275117600.18794") :outer("24_1275117600.18794")
+.sub "_block289"  :anon :subid("25_1275160387.00648") :outer("24_1275160387.00648")
     .param pmc param_291
 .annotate 'line', 553
     .lex "$_", param_291
@@ -7693,11 +7693,11 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block215"  :anon :subid("21_1275117600.18794") :outer("13_1275117600.18794")
+.sub "_block215"  :anon :subid("21_1275160387.00648") :outer("13_1275160387.00648")
 .annotate 'line', 534
-    .const 'Sub' $P256 = "23_1275117600.18794" 
+    .const 'Sub' $P256 = "23_1275160387.00648" 
     capture_lex $P256
-    .const 'Sub' $P228 = "22_1275117600.18794" 
+    .const 'Sub' $P228 = "22_1275160387.00648" 
     capture_lex $P228
 .annotate 'line', 535
     new $P217, "Undef"
@@ -7732,7 +7732,7 @@
     unless $P223, loop244_done
     shift $P226, $P223
   loop244_redo:
-    .const 'Sub' $P228 = "22_1275117600.18794" 
+    .const 'Sub' $P228 = "22_1275160387.00648" 
     capture_lex $P228
     $P228($P226)
   loop244_next:
@@ -7771,7 +7771,7 @@
     unless $P251, loop269_done
     shift $P254, $P251
   loop269_redo:
-    .const 'Sub' $P256 = "23_1275117600.18794" 
+    .const 'Sub' $P256 = "23_1275160387.00648" 
     capture_lex $P256
     $P256($P254)
   loop269_next:
@@ -7801,7 +7801,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block227"  :anon :subid("22_1275117600.18794") :outer("21_1275117600.18794")
+.sub "_block227"  :anon :subid("22_1275160387.00648") :outer("21_1275160387.00648")
     .param pmc param_229
 .annotate 'line', 541
     .lex "$_", param_229
@@ -7841,7 +7841,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block255"  :anon :subid("23_1275117600.18794") :outer("21_1275117600.18794")
+.sub "_block255"  :anon :subid("23_1275160387.00648") :outer("21_1275160387.00648")
     .param pmc param_257
 .annotate 'line', 546
     .lex "$_", param_257
@@ -7881,9 +7881,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block173"  :anon :subid("19_1275117600.18794") :outer("13_1275117600.18794")
+.sub "_block173"  :anon :subid("19_1275160387.00648") :outer("13_1275160387.00648")
 .annotate 'line', 521
-    .const 'Sub' $P192 = "20_1275117600.18794" 
+    .const 'Sub' $P192 = "20_1275160387.00648" 
     capture_lex $P192
 .annotate 'line', 522
     new $P175, "Undef"
@@ -7926,7 +7926,7 @@
     unless $P187, loop208_done
     shift $P190, $P187
   loop208_redo:
-    .const 'Sub' $P192 = "20_1275117600.18794" 
+    .const 'Sub' $P192 = "20_1275160387.00648" 
     capture_lex $P192
     $P192($P190)
   loop208_next:
@@ -7946,7 +7946,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block191"  :anon :subid("20_1275117600.18794") :outer("19_1275117600.18794")
+.sub "_block191"  :anon :subid("20_1275160387.00648") :outer("19_1275160387.00648")
     .param pmc param_193
 .annotate 'line', 529
     .lex "$_", param_193
@@ -7986,10 +7986,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block131"  :anon :subid("17_1275117600.18794") :outer("13_1275117600.18794")
+.sub "_block131"  :anon :subid("17_1275160387.00648") :outer("13_1275160387.00648")
     .param pmc param_134
 .annotate 'line', 513
-    .const 'Sub' $P143 = "18_1275117600.18794" 
+    .const 'Sub' $P143 = "18_1275160387.00648" 
     capture_lex $P143
 .annotate 'line', 514
     $P133 = root_new ['parrot';'Hash']
@@ -8012,7 +8012,7 @@
     unless $P138, loop156_done
     shift $P141, $P138
   loop156_redo:
-    .const 'Sub' $P143 = "18_1275117600.18794" 
+    .const 'Sub' $P143 = "18_1275160387.00648" 
     capture_lex $P143
     $P143($P141)
   loop156_next:
@@ -8042,7 +8042,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block142"  :anon :subid("18_1275117600.18794") :outer("17_1275117600.18794")
+.sub "_block142"  :anon :subid("18_1275160387.00648") :outer("17_1275160387.00648")
     .param pmc param_144
 .annotate 'line', 515
     .lex "$_", param_144
@@ -8082,9 +8082,9 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block64"  :anon :subid("14_1275117600.18794") :outer("13_1275117600.18794")
+.sub "_block64"  :anon :subid("14_1275160387.00648") :outer("13_1275160387.00648")
 .annotate 'line', 499
-    .const 'Sub' $P74 = "15_1275117600.18794" 
+    .const 'Sub' $P74 = "15_1275160387.00648" 
     capture_lex $P74
 .annotate 'line', 500
     new $P66, "Undef"
@@ -8105,7 +8105,7 @@
     unless $P68, loop118_done
     shift $P72, $P68
   loop118_redo:
-    .const 'Sub' $P74 = "15_1275117600.18794" 
+    .const 'Sub' $P74 = "15_1275160387.00648" 
     capture_lex $P74
     $P74($P72)
   loop118_next:
@@ -8128,10 +8128,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block73"  :anon :subid("15_1275117600.18794") :outer("14_1275117600.18794")
+.sub "_block73"  :anon :subid("15_1275160387.00648") :outer("14_1275160387.00648")
     .param pmc param_76
 .annotate 'line', 501
-    .const 'Sub' $P85 = "16_1275117600.18794" 
+    .const 'Sub' $P85 = "16_1275160387.00648" 
     capture_lex $P85
 .annotate 'line', 502
     $P75 = root_new ['parrot';'Hash']
@@ -8154,7 +8154,7 @@
     unless $P80, loop105_done
     shift $P83, $P80
   loop105_redo:
-    .const 'Sub' $P85 = "16_1275117600.18794" 
+    .const 'Sub' $P85 = "16_1275160387.00648" 
     capture_lex $P85
     $P85($P83)
   loop105_next:
@@ -8203,7 +8203,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block84"  :anon :subid("16_1275117600.18794") :outer("15_1275117600.18794")
+.sub "_block84"  :anon :subid("16_1275160387.00648") :outer("15_1275160387.00648")
     .param pmc param_86
 .annotate 'line', 503
     .lex "$_", param_86
@@ -8262,7 +8262,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backmod"  :subid("26_1275117600.18794") :outer("11_1275117600.18794")
+.sub "backmod"  :subid("26_1275160387.00648") :outer("11_1275160387.00648")
     .param pmc param_308
     .param pmc param_309
 .annotate 'line', 562
@@ -8336,7 +8336,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "subrule_alias"  :subid("27_1275117600.18794") :outer("11_1275117600.18794")
+.sub "subrule_alias"  :subid("27_1275160387.00648") :outer("11_1275160387.00648")
     .param pmc param_341
     .param pmc param_342
 .annotate 'line', 569
@@ -8380,7 +8380,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "arg"  :subid("28_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "arg"  :subid("28_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_363
 .annotate 'line', 14
     new $P362, 'ExceptionHandler'
@@ -8436,10 +8436,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "arglist"  :subid("29_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "arglist"  :subid("29_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_380
 .annotate 'line', 18
-    .const 'Sub' $P390 = "30_1275117600.18794" 
+    .const 'Sub' $P390 = "30_1275160387.00648" 
     capture_lex $P390
     new $P379, 'ExceptionHandler'
     set_addr $P379, control_378
@@ -8473,7 +8473,7 @@
     unless $P384, loop396_done
     shift $P388, $P384
   loop396_redo:
-    .const 'Sub' $P390 = "30_1275117600.18794" 
+    .const 'Sub' $P390 = "30_1275160387.00648" 
     capture_lex $P390
     $P390($P388)
   loop396_next:
@@ -8502,7 +8502,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block389"  :anon :subid("30_1275117600.18794") :outer("29_1275117600.18794")
+.sub "_block389"  :anon :subid("30_1275160387.00648") :outer("29_1275160387.00648")
     .param pmc param_391
 .annotate 'line', 20
     .lex "$_", param_391
@@ -8515,7 +8515,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "TOP"  :subid("31_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "TOP"  :subid("31_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_406
 .annotate 'line', 24
     new $P405, 'ExceptionHandler'
@@ -8557,14 +8557,14 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "nibbler"  :subid("32_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "nibbler"  :subid("32_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_421
     .param pmc param_422 :optional
     .param int has_param_422 :opt_flag
 .annotate 'line', 30
-    .const 'Sub' $P456 = "34_1275117600.18794" 
+    .const 'Sub' $P456 = "34_1275160387.00648" 
     capture_lex $P456
-    .const 'Sub' $P430 = "33_1275117600.18794" 
+    .const 'Sub' $P430 = "33_1275160387.00648" 
     capture_lex $P430
     new $P420, 'ExceptionHandler'
     set_addr $P420, control_419
@@ -8585,7 +8585,7 @@
     set $S427, $P426
     iseq $I428, $S427, "open"
     unless $I428, if_425_end
-    .const 'Sub' $P430 = "33_1275117600.18794" 
+    .const 'Sub' $P430 = "33_1275160387.00648" 
     capture_lex $P430
     $P430()
   if_425_end:
@@ -8648,7 +8648,7 @@
     unless $P450, loop462_done
     shift $P454, $P450
   loop462_redo:
-    .const 'Sub' $P456 = "34_1275117600.18794" 
+    .const 'Sub' $P456 = "34_1275160387.00648" 
     capture_lex $P456
     $P456($P454)
   loop462_next:
@@ -8678,7 +8678,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block429"  :anon :subid("33_1275117600.18794") :outer("32_1275117600.18794")
+.sub "_block429"  :anon :subid("33_1275160387.00648") :outer("32_1275160387.00648")
 .annotate 'line', 32
     $P431 = root_new ['parrot';'Hash']
     .lex "%old", $P431
@@ -8718,7 +8718,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block455"  :anon :subid("34_1275117600.18794") :outer("32_1275117600.18794")
+.sub "_block455"  :anon :subid("34_1275160387.00648") :outer("32_1275160387.00648")
     .param pmc param_457
 .annotate 'line', 45
     .lex "$_", param_457
@@ -8733,10 +8733,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "termish"  :subid("35_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "termish"  :subid("35_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_476
 .annotate 'line', 55
-    .const 'Sub' $P489 = "36_1275117600.18794" 
+    .const 'Sub' $P489 = "36_1275160387.00648" 
     capture_lex $P489
     new $P475, 'ExceptionHandler'
     set_addr $P475, control_474
@@ -8779,7 +8779,7 @@
     unless $P483, loop534_done
     shift $P487, $P483
   loop534_redo:
-    .const 'Sub' $P489 = "36_1275117600.18794" 
+    .const 'Sub' $P489 = "36_1275160387.00648" 
     capture_lex $P489
     $P489($P487)
   loop534_next:
@@ -8808,7 +8808,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block488"  :anon :subid("36_1275117600.18794") :outer("35_1275117600.18794")
+.sub "_block488"  :anon :subid("36_1275160387.00648") :outer("35_1275160387.00648")
     .param pmc param_491
 .annotate 'line', 59
     new $P490, "Undef"
@@ -8935,10 +8935,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "quantified_atom"  :subid("37_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "quantified_atom"  :subid("37_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_544
 .annotate 'line', 76
-    .const 'Sub' $P553 = "38_1275117600.18794" 
+    .const 'Sub' $P553 = "38_1275160387.00648" 
     capture_lex $P553
     new $P543, 'ExceptionHandler'
     set_addr $P543, control_542
@@ -9001,7 +9001,7 @@
     goto if_549_end
   if_549:
 .annotate 'line', 78
-    .const 'Sub' $P553 = "38_1275117600.18794" 
+    .const 'Sub' $P553 = "38_1275160387.00648" 
     capture_lex $P553
     $P553()
   if_549_end:
@@ -9055,7 +9055,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block552"  :anon :subid("38_1275117600.18794") :outer("37_1275117600.18794")
+.sub "_block552"  :anon :subid("38_1275160387.00648") :outer("37_1275160387.00648")
 .annotate 'line', 80
     new $P554, "Undef"
     .lex "$qast", $P554
@@ -9095,7 +9095,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "atom"  :subid("39_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "atom"  :subid("39_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_595
 .annotate 'line', 91
     new $P594, 'ExceptionHandler'
@@ -9173,7 +9173,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "quantifier:sym<*>"  :subid("40_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "quantifier:sym<*>"  :subid("40_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_621
 .annotate 'line', 101
     new $P620, 'ExceptionHandler'
@@ -9213,7 +9213,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "quantifier:sym<+>"  :subid("41_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "quantifier:sym<+>"  :subid("41_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_636
 .annotate 'line', 106
     new $P635, 'ExceptionHandler'
@@ -9253,7 +9253,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "quantifier:sym<?>"  :subid("42_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "quantifier:sym<?>"  :subid("42_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_651
 .annotate 'line', 111
     new $P650, 'ExceptionHandler'
@@ -9297,7 +9297,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "quantifier:sym<**>"  :subid("43_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "quantifier:sym<**>"  :subid("43_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_668
 .annotate 'line', 117
     new $P667, 'ExceptionHandler'
@@ -9437,7 +9437,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<ws>"  :subid("44_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<ws>"  :subid("44_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_715
 .annotate 'line', 131
     new $P714, 'ExceptionHandler'
@@ -9489,7 +9489,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<[ ]>"  :subid("45_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<[ ]>"  :subid("45_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_733
 .annotate 'line', 140
     new $P732, 'ExceptionHandler'
@@ -9521,7 +9521,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<( )>"  :subid("46_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<( )>"  :subid("46_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_743
 .annotate 'line', 144
     new $P742, 'ExceptionHandler'
@@ -9569,7 +9569,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<'>"  :subid("47_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<'>"  :subid("47_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_761
 .annotate 'line', 151
     new $P760, 'ExceptionHandler'
@@ -9625,7 +9625,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<\">"  :subid("48_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<\">"  :subid("48_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_784
 .annotate 'line', 158
     new $P783, 'ExceptionHandler'
@@ -9681,7 +9681,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<.>"  :subid("49_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<.>"  :subid("49_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_807
 .annotate 'line', 165
     new $P806, 'ExceptionHandler'
@@ -9712,7 +9712,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<^>"  :subid("50_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<^>"  :subid("50_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_819
 .annotate 'line', 170
     new $P818, 'ExceptionHandler'
@@ -9743,7 +9743,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<^^>"  :subid("51_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<^^>"  :subid("51_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_831
 .annotate 'line', 175
     new $P830, 'ExceptionHandler'
@@ -9774,7 +9774,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<$>"  :subid("52_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<$>"  :subid("52_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_843
 .annotate 'line', 180
     new $P842, 'ExceptionHandler'
@@ -9805,7 +9805,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<$$>"  :subid("53_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<$$>"  :subid("53_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_855
 .annotate 'line', 185
     new $P854, 'ExceptionHandler'
@@ -9836,7 +9836,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<:::>"  :subid("54_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<:::>"  :subid("54_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_867
 .annotate 'line', 190
     new $P866, 'ExceptionHandler'
@@ -9867,7 +9867,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<lwb>"  :subid("55_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<lwb>"  :subid("55_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_879
 .annotate 'line', 195
     new $P878, 'ExceptionHandler'
@@ -9898,7 +9898,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<rwb>"  :subid("56_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<rwb>"  :subid("56_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_891
 .annotate 'line', 200
     new $P890, 'ExceptionHandler'
@@ -9929,7 +9929,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<bs>"  :subid("57_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<bs>"  :subid("57_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_903
 .annotate 'line', 205
     new $P902, 'ExceptionHandler'
@@ -9961,7 +9961,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<mod>"  :subid("58_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<mod>"  :subid("58_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_913
 .annotate 'line', 209
     new $P912, 'ExceptionHandler'
@@ -9993,7 +9993,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<assert>"  :subid("59_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<assert>"  :subid("59_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_923
 .annotate 'line', 213
     new $P922, 'ExceptionHandler'
@@ -10025,7 +10025,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<~>"  :subid("60_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<~>"  :subid("60_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_933
 .annotate 'line', 217
     new $P932, 'ExceptionHandler'
@@ -10087,7 +10087,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<{*}>"  :subid("61_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<{*}>"  :subid("61_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_955
 .annotate 'line', 230
     new $P954, 'ExceptionHandler'
@@ -10148,7 +10148,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<var>"  :subid("62_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<var>"  :subid("62_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_976
 .annotate 'line', 237
     new $P975, 'ExceptionHandler'
@@ -10308,7 +10308,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "metachar:sym<PIR>"  :subid("63_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "metachar:sym<PIR>"  :subid("63_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1032
 .annotate 'line', 257
     new $P1031, 'ExceptionHandler'
@@ -10347,7 +10347,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<w>"  :subid("64_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<w>"  :subid("64_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1047
 .annotate 'line', 265
     new $P1046, 'ExceptionHandler'
@@ -10413,7 +10413,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<b>"  :subid("65_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<b>"  :subid("65_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1071
 .annotate 'line', 271
     new $P1070, 'ExceptionHandler'
@@ -10456,7 +10456,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<e>"  :subid("66_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<e>"  :subid("66_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1087
 .annotate 'line', 277
     new $P1086, 'ExceptionHandler'
@@ -10499,7 +10499,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<f>"  :subid("67_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<f>"  :subid("67_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1103
 .annotate 'line', 283
     new $P1102, 'ExceptionHandler'
@@ -10542,7 +10542,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<h>"  :subid("68_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<h>"  :subid("68_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1119
 .annotate 'line', 289
     new $P1118, 'ExceptionHandler'
@@ -10585,7 +10585,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<r>"  :subid("69_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<r>"  :subid("69_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1135
 .annotate 'line', 295
     new $P1134, 'ExceptionHandler'
@@ -10628,7 +10628,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<t>"  :subid("70_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<t>"  :subid("70_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1151
 .annotate 'line', 301
     new $P1150, 'ExceptionHandler'
@@ -10671,7 +10671,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<v>"  :subid("71_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<v>"  :subid("71_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1167
 .annotate 'line', 307
     new $P1166, 'ExceptionHandler'
@@ -10714,7 +10714,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<o>"  :subid("72_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<o>"  :subid("72_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1183
 .annotate 'line', 314
     new $P1182, 'ExceptionHandler'
@@ -10797,7 +10797,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<x>"  :subid("73_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<x>"  :subid("73_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1214
 .annotate 'line', 323
     new $P1213, 'ExceptionHandler'
@@ -10880,7 +10880,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<c>"  :subid("74_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<c>"  :subid("74_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1245
 .annotate 'line', 332
     new $P1244, 'ExceptionHandler'
@@ -10915,7 +10915,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "backslash:sym<misc>"  :subid("75_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "backslash:sym<misc>"  :subid("75_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1258
 .annotate 'line', 336
     new $P1257, 'ExceptionHandler'
@@ -10948,7 +10948,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "assertion:sym<?>"  :subid("76_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "assertion:sym<?>"  :subid("76_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1272
 .annotate 'line', 342
     new $P1271, 'ExceptionHandler'
@@ -11008,7 +11008,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "assertion:sym<!>"  :subid("77_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "assertion:sym<!>"  :subid("77_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1290
 .annotate 'line', 352
     new $P1289, 'ExceptionHandler'
@@ -11076,7 +11076,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "assertion:sym<method>"  :subid("78_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "assertion:sym<method>"  :subid("78_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1314
 .annotate 'line', 365
     new $P1313, 'ExceptionHandler'
@@ -11119,12 +11119,12 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "assertion:sym<name>"  :subid("79_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "assertion:sym<name>"  :subid("79_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1328
 .annotate 'line', 372
-    .const 'Sub' $P1386 = "81_1275117600.18794" 
+    .const 'Sub' $P1386 = "81_1275160387.00648" 
     capture_lex $P1386
-    .const 'Sub' $P1350 = "80_1275117600.18794" 
+    .const 'Sub' $P1350 = "80_1275160387.00648" 
     capture_lex $P1350
     new $P1327, 'ExceptionHandler'
     set_addr $P1327, control_1326
@@ -11220,7 +11220,7 @@
     unless $P1377, loop1391_done
     shift $P1384, $P1377
   loop1391_redo:
-    .const 'Sub' $P1386 = "81_1275117600.18794" 
+    .const 'Sub' $P1386 = "81_1275160387.00648" 
     capture_lex $P1386
     $P1386($P1384)
   loop1391_next:
@@ -11260,7 +11260,7 @@
     goto if_1345_end
   if_1345:
 .annotate 'line', 379
-    .const 'Sub' $P1350 = "80_1275117600.18794" 
+    .const 'Sub' $P1350 = "80_1275160387.00648" 
     capture_lex $P1350
     $P1350()
   if_1345_end:
@@ -11301,7 +11301,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1385"  :anon :subid("81_1275117600.18794") :outer("79_1275117600.18794")
+.sub "_block1385"  :anon :subid("81_1275160387.00648") :outer("79_1275160387.00648")
     .param pmc param_1387
 .annotate 'line', 401
     .lex "$_", param_1387
@@ -11313,7 +11313,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1349"  :anon :subid("80_1275117600.18794") :outer("79_1275117600.18794")
+.sub "_block1349"  :anon :subid("80_1275160387.00648") :outer("79_1275160387.00648")
 .annotate 'line', 380
     new $P1351, "Undef"
     .lex "$regexsym", $P1351
@@ -11344,10 +11344,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "assertion:sym<[>"  :subid("82_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "assertion:sym<[>"  :subid("82_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1401
 .annotate 'line', 407
-    .const 'Sub' $P1436 = "83_1275117600.18794" 
+    .const 'Sub' $P1436 = "83_1275160387.00648" 
     capture_lex $P1436
     new $P1400, 'ExceptionHandler'
     set_addr $P1400, control_1399
@@ -11439,7 +11439,7 @@
     islt $I1434, $N1431, $N1433
     unless $I1434, loop1459_done
   loop1459_redo:
-    .const 'Sub' $P1436 = "83_1275117600.18794" 
+    .const 'Sub' $P1436 = "83_1275160387.00648" 
     capture_lex $P1436
     $P1436()
   loop1459_next:
@@ -11467,7 +11467,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1435"  :anon :subid("83_1275117600.18794") :outer("82_1275117600.18794")
+.sub "_block1435"  :anon :subid("83_1275160387.00648") :outer("82_1275160387.00648")
 .annotate 'line', 421
     new $P1437, "Undef"
     .lex "$ast", $P1437
@@ -11518,12 +11518,12 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "cclass_elem"  :subid("84_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "cclass_elem"  :subid("84_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1469
 .annotate 'line', 434
-    .const 'Sub' $P1494 = "86_1275117600.18794" 
+    .const 'Sub' $P1494 = "86_1275160387.00648" 
     capture_lex $P1494
-    .const 'Sub' $P1478 = "85_1275117600.18794" 
+    .const 'Sub' $P1478 = "85_1275160387.00648" 
     capture_lex $P1478
     new $P1468, 'ExceptionHandler'
     set_addr $P1468, control_1467
@@ -11572,7 +11572,7 @@
     unless $P1488, loop1519_done
     shift $P1492, $P1488
   loop1519_redo:
-    .const 'Sub' $P1494 = "86_1275117600.18794" 
+    .const 'Sub' $P1494 = "86_1275160387.00648" 
     capture_lex $P1494
     $P1494($P1492)
   loop1519_next:
@@ -11596,7 +11596,7 @@
     goto if_1474_end
   if_1474:
 .annotate 'line', 437
-    .const 'Sub' $P1478 = "85_1275117600.18794" 
+    .const 'Sub' $P1478 = "85_1275160387.00648" 
     capture_lex $P1478
     $P1478()
   if_1474_end:
@@ -11628,10 +11628,10 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1493"  :anon :subid("86_1275117600.18794") :outer("84_1275117600.18794")
+.sub "_block1493"  :anon :subid("86_1275160387.00648") :outer("84_1275160387.00648")
     .param pmc param_1495
 .annotate 'line', 441
-    .const 'Sub' $P1501 = "87_1275117600.18794" 
+    .const 'Sub' $P1501 = "87_1275160387.00648" 
     capture_lex $P1501
     .lex "$_", param_1495
 .annotate 'line', 442
@@ -11660,7 +11660,7 @@
 .annotate 'line', 442
     goto if_1497_end
   if_1497:
-    .const 'Sub' $P1501 = "87_1275117600.18794" 
+    .const 'Sub' $P1501 = "87_1275160387.00648" 
     capture_lex $P1501
     $P1514 = $P1501()
     set $P1496, $P1514
@@ -11671,7 +11671,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1500"  :anon :subid("87_1275117600.18794") :outer("86_1275117600.18794")
+.sub "_block1500"  :anon :subid("87_1275160387.00648") :outer("86_1275160387.00648")
 .annotate 'line', 443
     new $P1502, "Undef"
     .lex "$a", $P1502
@@ -11735,7 +11735,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1477"  :anon :subid("85_1275117600.18794") :outer("84_1275117600.18794")
+.sub "_block1477"  :anon :subid("85_1275160387.00648") :outer("84_1275160387.00648")
 .annotate 'line', 438
     new $P1479, "Undef"
     .lex "$name", $P1479
@@ -11763,7 +11763,7 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "mod_internal"  :subid("88_1275117600.18794") :method :outer("11_1275117600.18794")
+.sub "mod_internal"  :subid("88_1275160387.00648") :method :outer("11_1275160387.00648")
     .param pmc param_1538
 .annotate 'line', 472
     new $P1537, 'ExceptionHandler'
@@ -11861,18 +11861,18 @@
 
 
 .namespace ["Regex";"P6Regex";"Actions"]
-.sub "_block1568" :load :anon :subid("89_1275117600.18794")
+.sub "_block1568" :load :anon :subid("89_1275160387.00648")
 .annotate 'line', 4
-    .const 'Sub' $P1570 = "11_1275117600.18794" 
+    .const 'Sub' $P1570 = "11_1275160387.00648" 
     $P1571 = $P1570()
     .return ($P1571)
 .end
 
 
 .namespace []
-.sub "_block1574" :load :anon :subid("90_1275117600.18794")
+.sub "_block1574" :load :anon :subid("90_1275160387.00648")
 .annotate 'line', 1
-    .const 'Sub' $P1576 = "10_1275117600.18794" 
+    .const 'Sub' $P1576 = "10_1275160387.00648" 
     $P1577 = $P1576()
     .return ($P1577)
 .end

Modified: branches/gc_massacre/ext/nqp-rx/src/stage0/Regex-s0.pir
==============================================================================
--- branches/gc_massacre/ext/nqp-rx/src/stage0/Regex-s0.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/ext/nqp-rx/src/stage0/Regex-s0.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -1615,6 +1615,9 @@
     $I0 = self.'to'()
     $I1 = self.'from'()
     $I2 = $I0 - $I1
+    if $I2 >= 0 goto done
+    .return (0)
+  done:
     .return ($I2)
 .end
 

Modified: branches/gc_massacre/runtime/parrot/library/Test/Builder/Output.pir
==============================================================================
--- branches/gc_massacre/runtime/parrot/library/Test/Builder/Output.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/runtime/parrot/library/Test/Builder/Output.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -146,7 +146,7 @@
     if i == 0 goto LINE_OK
   	line       = lines[i]
   	first_char = substr line, 0, 1
-	eq_str first_char, '#', LINE_OK
+	if first_char == '#' goto LINE_OK
 
 	.local string new_line
 	new_line = '# '
@@ -186,7 +186,7 @@
 
 	.local string first_char
 	first_char = substr message, 0, 1
-	eq_str first_char, '#', WRITE_MESSAGE
+	if first_char == '#' goto WRITE_MESSAGE
 
 	first_char = '# '
 	concat first_char, message

Modified: branches/gc_massacre/runtime/parrot/library/Test/More.pir
==============================================================================
--- branches/gc_massacre/runtime/parrot/library/Test/More.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/runtime/parrot/library/Test/More.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -67,8 +67,6 @@
 
 .namespace [ 'Test'; 'More' ]
 
-.loadlib 'io_ops'
-
 .sub _initialize :load
     load_bytecode 'Test/Builder.pbc'
 

Modified: branches/gc_massacre/runtime/parrot/library/distutils.pir
==============================================================================
--- branches/gc_massacre/runtime/parrot/library/distutils.pir	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/runtime/parrot/library/distutils.pir	Mon May 31 10:40:44 2010	(r47209)
@@ -4523,6 +4523,36 @@
     .return ($I0)
 .end
 
+=item runtests
+
+=cut
+
+.sub 'runtests' :multi()
+    .param pmc files :slurpy
+    .param pmc opts :slurpy :named
+    load_bytecode 'TAP/Harness.pbc'
+    .local pmc harness
+    harness = new ['TAP';'Harness']
+    harness.'process_args'(opts)
+    .local pmc aggregate
+    aggregate = harness.'runtests'(files)
+    $I0 = aggregate.'has_errors'()
+    unless $I0 goto L1
+    $I0 = exists opts['ignore_error']
+    unless $I0 goto L2
+    $I0 = opts['ignore_error']
+    if $I0 goto L1
+  L2:
+    die "test fails"
+  L1:
+.end
+
+.sub 'runtests' :multi(ResizableStringArray,Hash)
+    .param pmc array
+    .param pmc hash
+    .tailcall runtests(array :flat, hash :flat :named)
+.end
+
 =back
 
 =head1 AUTHOR

Modified: branches/gc_massacre/src/ops/core_ops.c
==============================================================================
--- branches/gc_massacre/src/ops/core_ops.c	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/src/ops/core_ops.c	Mon May 31 10:40:44 2010	(r47209)
@@ -14343,7 +14343,7 @@
 
     if (!PMC_IS_NULL(signature))
         Parrot_pcc_set_object(interp, signature, NULL);
-    interp->current_cont   = NEED_CONTINUATION;    
+    interp->current_cont   = NEED_CONTINUATION;
     dest                   = VTABLE_invoke(interp, p, dest);return (opcode_t *)dest;
 }
 
@@ -23292,7 +23292,9 @@
     PMC *sub = Parrot_find_name_op(interp, SREG(2), dest);
 
     if (PMC_IS_NULL(sub)) {
-        opcode_t *handler = Parrot_ex_throw_from_op_args(interp, dest,
+        opcode_t *handler;
+        Parrot_pcc_set_pc_func(interp, CURRENT_CONTEXT(interp), dest);
+        handler = Parrot_ex_throw_from_op_args(interp, dest,
                        EXCEPTION_GLOBAL_NOT_FOUND,
                        "Could not find sub %Ss", SREG(2));return (opcode_t *)handler;
     }
@@ -23308,7 +23310,9 @@
     PMC *sub = Parrot_find_name_op(interp, CONST(2)->u.string, dest);
 
     if (PMC_IS_NULL(sub)) {
-        opcode_t *handler = Parrot_ex_throw_from_op_args(interp, dest,
+        opcode_t *handler;
+        Parrot_pcc_set_pc_func(interp, CURRENT_CONTEXT(interp), dest);
+        handler = Parrot_ex_throw_from_op_args(interp, dest,
                        EXCEPTION_GLOBAL_NOT_FOUND,
                        "Could not find sub %Ss", CONST(2)->u.string);return (opcode_t *)handler;
     }

Modified: branches/gc_massacre/src/ops/var.ops
==============================================================================
--- branches/gc_massacre/src/ops/var.ops	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/src/ops/var.ops	Mon May 31 10:40:44 2010	(r47209)
@@ -482,7 +482,9 @@
     PMC *sub = Parrot_find_name_op(interp, $2, dest);
 
     if (PMC_IS_NULL(sub)) {
-        opcode_t *handler = Parrot_ex_throw_from_op_args(interp, dest,
+        opcode_t *handler;
+        Parrot_pcc_set_pc_func(interp, CURRENT_CONTEXT(interp), dest);
+        handler = Parrot_ex_throw_from_op_args(interp, dest,
                        EXCEPTION_GLOBAL_NOT_FOUND,
                        "Could not find sub %Ss", $2);
         goto ADDRESS(handler);

Modified: branches/gc_massacre/t/compilers/imcc/syn/clash.t
==============================================================================
--- branches/gc_massacre/t/compilers/imcc/syn/clash.t	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/t/compilers/imcc/syn/clash.t	Mon May 31 10:40:44 2010	(r47209)
@@ -8,7 +8,7 @@
 
 use Test::More;
 use Parrot::Config;
-use Parrot::Test tests => 17;
+use Parrot::Test tests => 15;
 
 pir_output_is( <<'CODE', <<'OUT', "if/unless" );
 .sub test :main
@@ -210,38 +210,6 @@
 ok
 OUTPUT
 
-pir_output_is( <<'CODE', <<'OUTPUT', "eq_num => eq" );
-.sub test :main
-    .local int i
-    .local int j
-    i = 1
-    j = 1
-    eq_num i, j, ok1
-    print "not "
-ok1:
-    print "ok 1\n"
-    end
-.end
-CODE
-ok 1
-OUTPUT
-
-pir_output_is( <<'CODE', <<'OUTPUT', "eq_num => eq mixed => eq_n_n" );
-.sub test :main
-    .local int i
-    .local num j
-    i = 1
-    j = 1.0
-    eq_num j, i, ok1
-    print "not "
-ok1:
-    print "ok 1\n"
-    end
-.end
-CODE
-ok 1
-OUTPUT
-
 pir_error_output_like( <<'CODE', <<'OUT', "undefined ident" );
 .sub test :main
     print no_such

Modified: branches/gc_massacre/t/pmc/complex.t
==============================================================================
--- branches/gc_massacre/t/pmc/complex.t	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/t/pmc/complex.t	Mon May 31 10:40:44 2010	(r47209)
@@ -687,9 +687,7 @@
     concat $S5, $S2, " of "
     concat $S5, $S5, $S4
 
-    $I0 = cmp_str $S1, $S3
-    $I0 = not $I0
-
+    $I0 = iseq $S1, $S3
     todo( $I0, $S4 )
 .endm
 

Modified: branches/gc_massacre/t/pmc/resizablepmcarray.t
==============================================================================
--- branches/gc_massacre/t/pmc/resizablepmcarray.t	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/t/pmc/resizablepmcarray.t	Mon May 31 10:40:44 2010	(r47209)
@@ -358,7 +358,7 @@
 .sub compare_reverse
     .param string a
     .param string b
-    $I0 = cmp_str b, a
+    $I0 = cmp b, a
     .return($I0)
 .end
 

Modified: branches/gc_massacre/t/pmc/sub.t
==============================================================================
--- branches/gc_massacre/t/pmc/sub.t	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/t/pmc/sub.t	Mon May 31 10:40:44 2010	(r47209)
@@ -991,22 +991,22 @@
 unlink( $l1_pbc, $l2_pbc );
 
 pir_output_is( <<'CODE', <<'OUTPUT', "immediate code as const" );
-.loadlib 'trans_ops' # for atan
-.sub make_pi :immediate :anon
-    $N0 = atan 1.0, 1.0
-    $N0 *= 4
+.sub make_phi :immediate :anon
+    $N0 = sqrt 5
+    $N0 += 1
+    $N0 /= 2
     $P0 = new ['Float']
     $P0 = $N0
     .return ($P0)
 .end
 
 .sub main :main
-    .const 'Sub' pi = "make_pi"
-    print pi
+    .const 'Sub' phi = "make_phi"
+    print phi
     print "\n"
 .end
 CODE
-3.14159265358979
+1.61803398874989
 OUTPUT
 
 pir_output_is( <<'CODE', <<'OUTPUT', "immediate code as const - obj" );

Modified: branches/gc_massacre/tools/dev/fetch_languages.pl
==============================================================================
--- branches/gc_massacre/tools/dev/fetch_languages.pl	Mon May 31 10:38:11 2010	(r47208)
+++ branches/gc_massacre/tools/dev/fetch_languages.pl	Mon May 31 10:40:44 2010	(r47209)
@@ -48,7 +48,7 @@
 my %update_cmd = (
     SVN => [qw(svn update)],
     GIT => [qw(git pull)],
-    HG  => [qw(hg pull)],
+    HG  => [qw(hg pull --update)],
 );
 
 my @hlls = (


More information about the parrot-commits mailing list