Class: RBS::Definition::InstanceAncestors
- Inherits:
-
Object
- Object
- RBS::Definition::InstanceAncestors
- Defined in:
- lib/rbs/definition.rb
Instance Attribute Summary collapse
-
#ancestors ⇒ Object
readonly
Returns the value of attribute ancestors.
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Instance Method Summary collapse
- #apply(args, location:) ⇒ Object
-
#initialize(type_name:, params:, ancestors:) ⇒ InstanceAncestors
constructor
A new instance of InstanceAncestors.
Constructor Details
#initialize(type_name:, params:, ancestors:) ⇒ InstanceAncestors
Returns a new instance of InstanceAncestors.
128 129 130 131 132 |
# File 'lib/rbs/definition.rb', line 128 def initialize(type_name:, params:, ancestors:) @type_name = type_name @params = params @ancestors = ancestors end |
Instance Attribute Details
#ancestors ⇒ Object (readonly)
Returns the value of attribute ancestors.
126 127 128 |
# File 'lib/rbs/definition.rb', line 126 def ancestors @ancestors end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
125 126 127 |
# File 'lib/rbs/definition.rb', line 125 def params @params end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
124 125 126 |
# File 'lib/rbs/definition.rb', line 124 def type_name @type_name end |
Instance Method Details
#apply(args, location:) ⇒ Object
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/rbs/definition.rb', line 134 def apply(args, location:) InvalidTypeApplicationError.check!( type_name: type_name, args: args, params: params, location: location ) subst = Substitution.build(params, args) ancestors.map do |ancestor| case ancestor when Ancestor::Instance if ancestor.args.empty? ancestor else Ancestor::Instance.new( name: ancestor.name, args: ancestor.args.map {|type| type.sub(subst) } ) end when Ancestor::Singleton ancestor end end end |