Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fallout of additional tests in S02-types/WHICH.t
  • Loading branch information
lizmat committed Oct 30, 2015
1 parent 94ce3cf commit 36c4c6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/CallFrame.pm
Expand Up @@ -29,7 +29,7 @@ my class CallFrame {
method file() {
%.annotations<file>;
}
method gist() {
multi method gist(CallFrame:D:) {
my %annotations := %.annotations;
"%annotations<file> at line %annotations<line>";
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/Exception.pm
Expand Up @@ -2073,7 +2073,7 @@ my class X::PhaserExceptions is Exception {
method message() {
"Multiple exceptions were thrown by LEAVE/POST phasers"
}
method gist(X::PhaserExceptions:D:) {
multi method gist(X::PhaserExceptions:D:) {
join "\n", flat
"Multiple exceptions were thrown by LEAVE/POST phasers\n",
@!exceptions>>.gist>>.indent(4)
Expand Down

0 comments on commit 36c4c6a

Please sign in to comment.