Class: RBS::Definition::SingletonAncestors

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_name:, ancestors:) ⇒ SingletonAncestors

Returns a new instance of SingletonAncestors.



273
274
275
276
# File 'lib/rbs/definition.rb', line 273

def initialize(type_name:, ancestors:)
  @type_name = type_name
  @ancestors = ancestors
end

Instance Attribute Details

#ancestorsObject (readonly)

Returns the value of attribute ancestors.



271
272
273
# File 'lib/rbs/definition.rb', line 271

def ancestors
  @ancestors
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



270
271
272
# File 'lib/rbs/definition.rb', line 270

def type_name
  @type_name
end