Fix equality check

This commit is contained in:
Michael Miller 2022-04-10 15:24:45 -06:00
parent e8bac86017
commit b0e27c69e8
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF

View file

@ -120,8 +120,8 @@ module Spectator
meth.free_vars == method.free_vars && meth.free_vars == method.free_vars &&
meth.receiver == method.receiver && meth.receiver == method.receiver &&
meth.return_type == method.return_type && meth.return_type == method.return_type &&
method.splat_index == method.splat_index && meth.splat_index == method.splat_index &&
method.visibility == method.visibility meth.visibility == method.visibility
end end
end end
:super :super