We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52192be commit 0937495Copy full SHA for 0937495
lib/overpass_parser/nodes/selectors.rb
@@ -104,7 +104,7 @@ def to_sql(sql_dialect)
104
def <=>(other)
105
return NOT_COMPARABLE if other.class != T.unsafe(self).class
106
107
- T.unsafe(self).class.decorator.props.keys.each do |attribute_key|
+ T.unsafe(self).class.decorator.props.each_key do |attribute_key|
108
a = T.unsafe(self).send(attribute_key)
109
b = other.send(attribute_key)
110
compare_result = (
0 commit comments