Skip to content

Commit

Permalink
[Truffle] All case specs passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Oct 2, 2014
1 parent 36a762a commit 27b2756
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Expand Up @@ -82,6 +82,11 @@ public boolean equal(RubyBasicObject a, RubyBasicObject b) {
return a == b;
}

@Specialization
public boolean equal(RubyBasicObject a, boolean b) {
return false;
}

}

@CoreMethod(names = "=~", minArgs = 1, maxArgs = 1)
Expand Down
1 change: 0 additions & 1 deletion spec/truffle/tags/language/case_tags.txt

This file was deleted.

0 comments on commit 27b2756

Please sign in to comment.