File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class HLL::Actions {
6
6
nqp ::atkey($ res , 0 );
7
7
}
8
8
9
- our sub ints_to_string ($ ints ) {
9
+ method ints_to_string ($ ints ) {
10
10
if pir::does($ ints , ' array' ) {
11
11
my $ result := ' ' ;
12
12
for $ ints {
@@ -144,11 +144,11 @@ class HLL::Actions {
144
144
method quote_escape :sym <esc >($/ ) { make " \c[27]" ; }
145
145
146
146
method quote_escape :sym <hex >($/ ) {
147
- make ints_to_string( $ < hexint > ?? $ < hexint > !! $ < hexints >< hexint > );
147
+ make self . ints_to_string( $ < hexint > ?? $ < hexint > !! $ < hexints >< hexint > );
148
148
}
149
149
150
150
method quote_escape :sym <oct >($/ ) {
151
- make ints_to_string( $ < octint > ?? $ < octint > !! $ < octints >< octint > );
151
+ make self . ints_to_string( $ < octint > ?? $ < octint > !! $ < octints >< octint > );
152
152
}
153
153
154
154
method quote_escape :sym <chr >($/ ) {
You can’t perform that action at this time.
0 commit comments