Skip to content

Commit

Permalink
Two more cases of .perl -> .raku
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 2, 2020
1 parent b54d83b commit b7888d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/Metamodel/RoleToClassApplier.nqp
Expand Up @@ -73,7 +73,7 @@ my class RoleToClassApplier {
}
unless $match {
nqp::die("Multi method '" ~ $_.name ~ "' with signature " ~
$_.multi.signature.perl ~ " must be resolved by class " ~
$_.multi.signature.raku ~ " must be resolved by class " ~
$target.HOW.name($target) ~
" because it exists in multiple roles (" ~
nqp::join(", ", $_.roles) ~ ")");
Expand Down Expand Up @@ -181,7 +181,7 @@ my class RoleToClassApplier {
}
unless $satisfaction {
my $name := $req.name;
my $sig := $req.code.signature.perl;
my $sig := $req.code.signature.raku;
nqp::die("Multi method '$name' with signature $sig must be implemented by " ~
$!target.HOW.name($!target) ~
" because it is required by a role");
Expand Down

0 comments on commit b7888d7

Please sign in to comment.