Skip to content

Instantly share code, notes, and snippets.

@Tux
Created March 17, 2015 10:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Tux/0f46657fdfdbb2bf3267 to your computer and use it in GitHub Desktop.
1080 method fragment (IO:D $io, Str:D $spec is copy) {
1081
1082 if ($spec ~~ s{^ "col=" } = "") {
1083 $!rrange = RangeSet;
1084 $spec.perl.say;
1085 self!colrange ($spec);
1086 return self!getline_all ($io);
1087 }
1088
1089 my @lines;
1090 return @lines;
1091 }
===SORRY!===
No such private method 'colrange' for invocant of type 'Text::CSV'
at test-t.pl:1085
------> self!colrange (⏏$spec);
No such private method 'getline_all' for invocant of type 'Text::CSV'
at test-t.pl:1086
------> return self!getline_all (⏏$io);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment