Class: RBS::Definition::SingletonAncestors
- Inherits:
-
Object
- Object
- RBS::Definition::SingletonAncestors
- Defined in:
- lib/rbs/definition.rb
Instance Attribute Summary collapse
-
#ancestors ⇒ Object
readonly
Returns the value of attribute ancestors.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Instance Method Summary collapse
-
#initialize(type_name:, ancestors:) ⇒ SingletonAncestors
constructor
A new instance of SingletonAncestors.
Constructor Details
#initialize(type_name:, ancestors:) ⇒ SingletonAncestors
Returns a new instance of SingletonAncestors.
268 269 270 271 |
# File 'lib/rbs/definition.rb', line 268 def initialize(type_name:, ancestors:) @type_name = type_name @ancestors = ancestors end |
Instance Attribute Details
#ancestors ⇒ Object (readonly)
Returns the value of attribute ancestors.
266 267 268 |
# File 'lib/rbs/definition.rb', line 266 def ancestors @ancestors end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
265 266 267 |
# File 'lib/rbs/definition.rb', line 265 def type_name @type_name end |