Method: Prism::ForwardingArgumentsNode#===

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.



6506
6507
6508
# File 'lib/prism/node.rb', line 6506

def ===(other)
  other.is_a?(ForwardingArgumentsNode)
end