We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb90f08 commit 73721c4Copy full SHA for 73721c4
src/QRegex/Cursor.nqp
@@ -707,10 +707,7 @@ class NQPMatch is NQPCapture {
707
708
method prune() {
709
self.capture_prune();
710
-# if nqp::defined($!cursor) {
711
-# $!cursor.prune();
712
- $!cursor := NQPMu;
713
-# }
+ $!cursor := NQPMu;
714
}
715
716
method !make($made) { $!made := $made }
src/core/NQPCapture.nqp
@@ -18,8 +18,8 @@ my class NQPCapture {
18
method hash() { %!hash }
19
20
method capture_prune() {
21
- @!array := nqp::list();
22
- %!hash := nqp::hash();
+ @!array := NQPMu;
+ %!hash := NQPMu;
23
24
25
0 commit comments