File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ class QRegex::P6Regex::Actions is HLL::Actions {
252
252
253
253
method backslash :sym <o >($/ ) {
254
254
my $ octlit :=
255
- HLL::Actions:: ints_to_string( $ < octint > || $ < octints >< octint > );
255
+ HLL::Actions. ints_to_string( $ < octint > || $ < octints >< octint > );
256
256
make $ < sym > eq ' O'
257
257
?? QAST ::Regex. new ( $ octlit , : rxtype(' enumcharlist' ),
258
258
: negate(1 ), : node($/ ) )
@@ -261,7 +261,7 @@ class QRegex::P6Regex::Actions is HLL::Actions {
261
261
262
262
method backslash :sym <x >($/ ) {
263
263
my $ hexlit :=
264
- HLL::Actions:: ints_to_string( $ < hexint > || $ < hexints >< hexint > );
264
+ HLL::Actions. ints_to_string( $ < hexint > || $ < hexints >< hexint > );
265
265
make $ < sym > eq ' X'
266
266
?? QAST ::Regex. new ( $ hexlit , : rxtype(' enumcharlist' ),
267
267
: negate(1 ), : node($/ ) )
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ class Regex::P6Regex::Actions is HLL::Actions {
342
342
343
343
method backslash :sym <o >($/ ) {
344
344
my $ octlit :=
345
- HLL::Actions:: ints_to_string( $ < octint > || $ < octints >< octint > );
345
+ HLL::Actions. ints_to_string( $ < octint > || $ < octints >< octint > );
346
346
make $ < sym > eq ' O'
347
347
?? PAST::Regex. new ( $ octlit , : pasttype(' enumcharlist' ),
348
348
: negate(1 ), : node($/ ) )
@@ -351,7 +351,7 @@ class Regex::P6Regex::Actions is HLL::Actions {
351
351
352
352
method backslash :sym <x >($/ ) {
353
353
my $ hexlit :=
354
- HLL::Actions:: ints_to_string( $ < hexint > || $ < hexints >< hexint > );
354
+ HLL::Actions. ints_to_string( $ < hexint > || $ < hexints >< hexint > );
355
355
make $ < sym > eq ' X'
356
356
?? PAST::Regex. new ( $ hexlit , : pasttype(' enumcharlist' ),
357
357
: negate(1 ), : node($/ ) )
You can’t perform that action at this time.
0 commit comments