Skip to content

Commit 13943ae

Browse files
committed
fix regexes again
1 parent d554f1d commit 13943ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/QRegex/P6Regex/Actions.nqp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class QRegex::P6Regex::Actions is HLL::Actions {
252252

253253
method backslash:sym<o>($/) {
254254
my $octlit :=
255-
HLL::Actions::ints_to_string( $<octint> || $<octints><octint> );
255+
HLL::Actions.ints_to_string( $<octint> || $<octints><octint> );
256256
make $<sym> eq 'O'
257257
?? QAST::Regex.new( $octlit, :rxtype('enumcharlist'),
258258
:negate(1), :node($/) )
@@ -261,7 +261,7 @@ class QRegex::P6Regex::Actions is HLL::Actions {
261261

262262
method backslash:sym<x>($/) {
263263
my $hexlit :=
264-
HLL::Actions::ints_to_string( $<hexint> || $<hexints><hexint> );
264+
HLL::Actions.ints_to_string( $<hexint> || $<hexints><hexint> );
265265
make $<sym> eq 'X'
266266
?? QAST::Regex.new( $hexlit, :rxtype('enumcharlist'),
267267
:negate(1), :node($/) )

src/Regex/P6Regex/Actions.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ class Regex::P6Regex::Actions is HLL::Actions {
342342

343343
method backslash:sym<o>($/) {
344344
my $octlit :=
345-
HLL::Actions::ints_to_string( $<octint> || $<octints><octint> );
345+
HLL::Actions.ints_to_string( $<octint> || $<octints><octint> );
346346
make $<sym> eq 'O'
347347
?? PAST::Regex.new( $octlit, :pasttype('enumcharlist'),
348348
:negate(1), :node($/) )
@@ -351,7 +351,7 @@ class Regex::P6Regex::Actions is HLL::Actions {
351351

352352
method backslash:sym<x>($/) {
353353
my $hexlit :=
354-
HLL::Actions::ints_to_string( $<hexint> || $<hexints><hexint> );
354+
HLL::Actions.ints_to_string( $<hexint> || $<hexints><hexint> );
355355
make $<sym> eq 'X'
356356
?? PAST::Regex.new( $hexlit, :pasttype('enumcharlist'),
357357
:negate(1), :node($/) )

0 commit comments

Comments
 (0)