Method: YARD::CodeObjects::Base#equal?
- Defined in:
- lib/yard/code_objects/base.rb
#equal?(other) ⇒ Boolean Also known as: ==, eql?
Tests if another object is equal to this, including a proxy
323 324 325 326 327 328 329 |
# File 'lib/yard/code_objects/base.rb', line 323 def equal?(other) if other.is_a?(Base) || other.is_a?(Proxy) path == other.path else super end end |