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 1658541 commit 1235a65Copy full SHA for 1235a65
src/QRegex/Cursor.nqp
@@ -678,7 +678,7 @@ class NQPMatch is NQPCapture {
678
has $!orig;
679
has int $!from;
680
has int $!to;
681
- has $!ast;
+ has $!made;
682
has $!cursor;
683
684
method from() { $!from }
@@ -698,8 +698,9 @@ class NQPMatch is NQPCapture {
698
method Bool() { $!to >= $!from }
699
method chars() { $!to >= $!from ?? $!to - $!from !! 0 }
700
701
- method !make($ast) { $!ast := $ast }
702
- method ast() { $!ast }
+ method !make($made) { $!made := $made }
+ method made() { $!made }
703
+ method ast() { $!made } # for historical reasons
704
705
method dump($indent?) {
706
unless nqp::defined($indent) {
0 commit comments