Skip to content

Commit

Permalink
Normalize function names in comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
RCHowell committed Apr 23, 2024
1 parent aca8dcb commit b536c77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ internal class Compiler(
val coercions = candidate.coercions.toTypedArray()
// Check this candidate
val fnArity = fn.signature.parameters.size
val fnName = fn.signature.name
val fnName = fn.signature.name.uppercase()
if (arity == -1) {
arity = fnArity
name = fnName
Expand Down

0 comments on commit b536c77

Please sign in to comment.