@@ -28,23 +28,31 @@ is ca($/.chunks), '0:a b c d', '$/.chunks is one item for (.*)';
28
28
my token wc { \w };
29
29
30
30
ok ' a b c' ~~ /:s <wc = & wc > (\w ) <wc = & wc > /, ' regex matches' ;
31
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
31
32
is ca($/ . caps), ' wc:a|0:b|wc:c' , ' named and positional captures mix correctly' ;
33
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
32
34
is ca($/ . chunks), ' wc:a|~: |0:b|~: |wc:c' ,
33
35
' named and positional captures mix correctly (chunks)' ;
34
36
35
37
ok ' a b c d' ~~ /[(\w ) \s * ]+ /, ' regex matches' ;
38
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
36
39
is ca($/ . caps), ' 0:a|0:b|0:c|0:d' , ' [(\w)* \s*]+ flattens (...)* for .caps' ;
40
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
37
41
is ca($/ . chunks), ' 0:a|~: |0:b|~: |0:c|~: |0:d' ,
38
42
' [(\w)* \s*]+ flattens (...)* for .chunks' ;
39
43
40
44
ok ' a b c' ~~ /[ (\S ) \s ] ** 2 (\S ) /, ' regex matches' ;
45
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
41
46
is ca($/ . caps), ' 0:a|0:b|1:c' , ' .caps distinguishes quantified () and multiple ()' ;
47
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
42
48
is ca($/ . chunks), ' 0:a|~: |0:b|~: |1:c' , ' .chunks distinguishes quantified () and multiple ()' ;
43
49
44
50
ok ' a b c d' ~~ /:s [(\w ) <wc = & wc > ]+ /, ' regex matches' ;
45
51
# 'RT 75484 (fails randomly) (noauto)'
52
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
46
53
is ca($/ . caps), ' 0:a|wc:b|0:c|wc:d' ,
47
54
' mixed named/positional flattening with quantifiers' ;
55
+ # ?niecza skip 'System.NullReferenceException: Object reference not set to an instance of an object'
48
56
is ca($/ . chunks), ' 0:a|~: |wc:b|~: |0:c|~: |wc:d' ,
49
57
' mixed named/positional flattening with quantifiers' ;
50
58
0 commit comments