Class: RBS::Types::ClassInstance
- Inherits:
-
Object
- Object
- RBS::Types::ClassInstance
- Includes:
- Application
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Attributes included from Application
Instance Method Summary collapse
-
#initialize(name:, args:, location:) ⇒ ClassInstance
constructor
A new instance of ClassInstance.
- #map_type_name(&block) ⇒ Object
- #sub(s) ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
Methods included from Application
#==, #each_type, #free_variables, #hash, #to_s
Constructor Details
#initialize(name:, args:, location:) ⇒ ClassInstance
Returns a new instance of ClassInstance.
271 272 273 274 275 |
# File 'lib/rbs/types.rb', line 271 def initialize(name:, args:, location:) @name = name @args = args @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
267 268 269 |
# File 'lib/rbs/types.rb', line 267 def location @location end |
Instance Method Details
#map_type_name(&block) ⇒ Object
287 288 289 290 291 292 293 |
# File 'lib/rbs/types.rb', line 287 def map_type_name(&block) ClassInstance.new( name: yield(name, location, self), args: args.map {|type| type.map_type_name(&block) }, location: location ) end |
#sub(s) ⇒ Object
281 282 283 284 285 |
# File 'lib/rbs/types.rb', line 281 def sub(s) self.class.new(name: name, args: args.map {|ty| ty.sub(s) }, location: location) end |
#to_json(state = _ = nil) ⇒ Object
277 278 279 |
# File 'lib/rbs/types.rb', line 277 def to_json(state = _ = nil) { class: :class_instance, name: name, args: args, location: location }.to_json(state) end |