Skip to content

Commit dab867d

Browse files
committed
s/.perl/.raku
1 parent 579ed85 commit dab867d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: lib/Text/CSV.pm

+8-8
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ class CellSet {
178178
}
179179

180180
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;
183183
}
184184
}
185185

@@ -261,7 +261,7 @@ class CSV::Field {
261261
$s ~= $!is_utf8 ?? "8" !! "7";
262262
$s ~= $!is_missing ?? "M" !! "m";
263263
$s ~= $!is_formula ?? "=" !! "-";
264-
$s ~ ":" ~ $!text.perl;
264+
$s ~ ":" ~ $!text.raku;
265265
}
266266

267267
method add (Str $chunk) {
@@ -968,7 +968,7 @@ class Text::CSV {
968968
}
969969

970970
$!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);
972972

973973
my CSV::Field $f = CSV::Field.new;
974974
my $eol = $!eol // rx{ \r\n || \r || \n };
@@ -1010,7 +1010,7 @@ class Text::CSV {
10101010
}
10111011
@ch or return parse_error (2012);
10121012

1013-
$opt_v > 2 and progress (0, @ch.perl);
1013+
$opt_v > 2 and progress (0, @ch.raku);
10141014

10151015
if ($!skip_empty_rows and
10161016
@ch.elems == 0 ||
@@ -1033,7 +1033,7 @@ class Text::CSV {
10331033

10341034
$pos = $ppos;
10351035

1036-
$opt_v > 8 and progress ($i, "###", $chunk.perl~"\t", $f.gist);
1036+
$opt_v > 8 and progress ($i, "###", $chunk.raku~"\t", $f.gist);
10371037

10381038
if ($chunk eq $sep) {
10391039
$opt_v > 5 and progress ($i, "SEP - " ~ $f.gist);
@@ -1050,7 +1050,7 @@ class Text::CSV {
10501050
# ,1,"foo, 3",,bar,
10511051
# ^
10521052
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);
10541054
$f.add ($chunk);
10551055
next;
10561056
}
@@ -1078,7 +1078,7 @@ class Text::CSV {
10781078

10791079
if ($f.is_quoted) {
10801080

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);
10821082
# ,1,"foo, 3"
10831083
# ^
10841084
$i == @ch - 1 and return parse_done ();

0 commit comments

Comments
 (0)