Method: Prism::ClassVariableAndWriteNode#===

Defined in:
lib/prism/node.rb

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



3471
3472
3473
3474
3475
3476
3477
# File 'lib/prism/node.rb', line 3471

def ===(other)
  other.is_a?(ClassVariableAndWriteNode) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (value === other.value)
end