@@ -178,8 +178,8 @@ class CellSet {
178
178
}
179
179
180
180
method show {
181
- say " Row: " , $ . row . to_list. perl ;
182
- say " Col: " , $ . col . to_list. perl ;
181
+ say " Row: " , $ . row . to_list. raku ;
182
+ say " Col: " , $ . col . to_list. raku ;
183
183
}
184
184
}
185
185
@@ -261,7 +261,7 @@ class CSV::Field {
261
261
$ s ~ = $ ! is_utf8 ?? " 8" !! " 7" ;
262
262
$ s ~ = $ ! is_missing ?? " M" !! " m" ;
263
263
$ s ~ = $ ! is_formula ?? " =" !! " -" ;
264
- $ s ~ " :" ~ $ ! text . perl ;
264
+ $ s ~ " :" ~ $ ! text . raku ;
265
265
}
266
266
267
267
method add (Str $ chunk ) {
@@ -968,7 +968,7 @@ class Text::CSV {
968
968
}
969
969
970
970
$ ! record_number = $ ! record_number + 1 ;
971
- $ opt_v > 4 and progress ($ ! record_number , $ buffer . perl );
971
+ $ opt_v > 4 and progress ($ ! record_number , $ buffer . raku );
972
972
973
973
my CSV::Field $ f = CSV::Field. new ;
974
974
my $ eol = $ ! eol // rx { \r\n || \r || \n };
@@ -1010,7 +1010,7 @@ class Text::CSV {
1010
1010
}
1011
1011
@ ch or return parse_error (2012 );
1012
1012
1013
- $ opt_v > 2 and progress (0 , @ ch . perl );
1013
+ $ opt_v > 2 and progress (0 , @ ch . raku );
1014
1014
1015
1015
if ($ ! skip_empty_rows and
1016
1016
@ ch . elems == 0 ||
@@ -1033,7 +1033,7 @@ class Text::CSV {
1033
1033
1034
1034
$ pos = $ ppos ;
1035
1035
1036
- $ opt_v > 8 and progress ($ i , " ###" , $ chunk . perl ~ " \t " , $ f . gist );
1036
+ $ opt_v > 8 and progress ($ i , " ###" , $ chunk . raku ~ " \t " , $ f . gist );
1037
1037
1038
1038
if ($ chunk eq $ sep ) {
1039
1039
$ opt_v > 5 and progress ($ i , " SEP - " ~ $ f . gist );
@@ -1050,7 +1050,7 @@ class Text::CSV {
1050
1050
# ,1,"foo, 3",,bar,
1051
1051
# ^
1052
1052
if ($ f . is_quoted) {
1053
- $ opt_v > 9 and progress ($ i , " inside quoted field " , @ ch [$ i .. * -1 ]. perl );
1053
+ $ opt_v > 9 and progress ($ i , " inside quoted field " , @ ch [$ i .. * -1 ]. raku );
1054
1054
$ f . add ($ chunk );
1055
1055
next ;
1056
1056
}
@@ -1078,7 +1078,7 @@ class Text::CSV {
1078
1078
1079
1079
if ($ f . is_quoted) {
1080
1080
1081
- $ opt_v > 9 and progress ($ i , " inside quoted field " , @ ch [$ i .. * -1 ]. perl );
1081
+ $ opt_v > 9 and progress ($ i , " inside quoted field " , @ ch [$ i .. * -1 ]. raku );
1082
1082
# ,1,"foo, 3"
1083
1083
# ^
1084
1084
$ i == @ ch - 1 and return parse_done ();
0 commit comments