Class: RBS::Definition::Ancestor::Singleton

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/definition.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:) ⇒ Singleton

Returns a new instance of Singleton.



233
234
235
# File 'lib/rbs/definition.rb', line 233

def initialize(name:)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



231
232
233
# File 'lib/rbs/definition.rb', line 231

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



237
238
239
# File 'lib/rbs/definition.rb', line 237

def ==(other)
  other.is_a?(Singleton) && other.name == name
end

#hashObject



243
244
245
# File 'lib/rbs/definition.rb', line 243

def hash
  self.class.hash ^ name.hash
end