Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make infix:<eqv> autothread as per current spec
  • Loading branch information
moritz committed Feb 28, 2012
1 parent 83b15cd commit 137b16b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Mu.pm
Expand Up @@ -397,8 +397,8 @@ sub infix:<=:=>(Mu \$x, Mu \$y) {
nqp::p6bool(nqp::iseq_i(nqp::where($x), nqp::where($y)));
}

proto sub infix:<eqv>(Mu $, Mu $) { * }
multi sub infix:<eqv>(Mu $a, Mu $b) {
proto sub infix:<eqv>(Any $, Any $) { * }
multi sub infix:<eqv>(Any $a, Any $b) {
$a.WHICH eq $b.WHICH
}

Expand Down

0 comments on commit 137b16b

Please sign in to comment.