Skip to content

Commit

Permalink
Update engine/runtime/src/main/java/org/enso/interpreter/node/express…
Browse files Browse the repository at this point in the history
…ion/builtin/meta/EqualsNode.java

Co-authored-by: Pavel Marek <[email protected]>
  • Loading branch information
JaroslavTulach and Akirathan authored Apr 14, 2023
1 parent 904055d commit 1711239
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,8 @@ boolean equalsAtomConstructors(AtomConstructor self, AtomConstructor other) {
}

@Specialization
boolean equalsAtoms(Atom self, Atom other, @Cached EqualsAtomNode compare) {
return compare.execute(self, other);
}
boolean equalsAtoms(Atom self, Atom other, @Cached EqualsAtomNode equalsNode) {
return equalsNode.execute(self, other);

@Specialization(guards = "isComplex(self, other, strings, warnings)")
boolean equalsComplex(
Expand Down

0 comments on commit 1711239

Please sign in to comment.