Method: SyntaxTree::Assign#===
- Defined in:
- lib/syntax_tree/node.rb
#===(other) ⇒ Object
1510 1511 1512 |
# File 'lib/syntax_tree/node.rb', line 1510 def ===(other) other.is_a?(Assign) && target === other.target && value === other.value end |