Method: Frepl::DerivedType#==
- Defined in:
- lib/frepl/statements/derived_type.rb
#==(other) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/frepl/statements/derived_type.rb', line 15 def ==(other) if other.is_a?(DerivedType) self.name == other.name else super(other) end end |