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.
213 214 215 216 217 |
# File 'lib/rbs/definition.rb', line 213 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.
211 212 213 |
# File 'lib/rbs/definition.rb', line 211 def ancestors @ancestors end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
210 211 212 |
# File 'lib/rbs/definition.rb', line 210 def params @params end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
209 210 211 |
# File 'lib/rbs/definition.rb', line 209 def type_name @type_name end |
Instance Method Details
#apply(args, location:) ⇒ Object
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
# File 'lib/rbs/definition.rb', line 219 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) }, source: ancestor.source ) end when Ancestor::Singleton ancestor end end end |