Method: CodeWeb::MethodCall#==
- Defined in:
- lib/code_web/method_call.rb
#==(other) ⇒ Object
87 88 89 90 91 92 |
# File 'lib/code_web/method_call.rb', line 87 def ==(other) other && other.name == @name && other.args == @args && other.is_yielding == @is_yielding end |