Class: RBS::Types::ClassInstance

Inherits:
Object
  • Object
show all
Includes:
Application
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Attributes included from Application

#args, #name

Instance Method Summary collapse

Methods included from Application

#==, #each_type, #free_variables, #hash, #to_s

Constructor Details

#initialize(name:, args:, location:) ⇒ ClassInstance

Returns a new instance of ClassInstance.



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

def initialize(name:, args:, location:)
  @name = name
  @args = args
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



269
270
271
# File 'lib/rbs/types.rb', line 269

def location
  @location
end

Instance Method Details

#map_type_name(&block) ⇒ Object



289
290
291
292
293
294
295
# File 'lib/rbs/types.rb', line 289

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



283
284
285
286
287
# File 'lib/rbs/types.rb', line 283

def sub(s)
  self.class.new(name: name,
                 args: args.map {|ty| ty.sub(s) },
                 location: location)
end

#to_json(*a) ⇒ Object



279
280
281
# File 'lib/rbs/types.rb', line 279

def to_json(*a)
  { class: :class_instance, name: name, args: args, location: location }.to_json(*a)
end