Class: RBS::Types::Alias

Inherits:
Object
  • Object
show all
Includes:
EmptyEachType, NoFreeVariables, NoSubst
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from EmptyEachType

#each_type

Methods included from NoSubst

#sub

Methods included from NoFreeVariables

#free_variables

Constructor Details

#initialize(name:, location:) ⇒ Alias

Returns a new instance of Alias.



301
302
303
304
# File 'lib/rbs/types.rb', line 301

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



298
299
300
# File 'lib/rbs/types.rb', line 298

def location
  @location
end

#nameObject (readonly)

Returns the value of attribute name.



299
300
301
# File 'lib/rbs/types.rb', line 299

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



306
307
308
# File 'lib/rbs/types.rb', line 306

def ==(other)
  other.is_a?(Alias) && other.name == name
end

#hashObject



312
313
314
# File 'lib/rbs/types.rb', line 312

def hash
  self.class.hash ^ name.hash
end

#map_type_nameObject



329
330
331
332
333
334
# File 'lib/rbs/types.rb', line 329

def map_type_name
  Alias.new(
    name: yield(name, location, self),
    location: location
  )
end

#to_json(*a) ⇒ Object



319
320
321
# File 'lib/rbs/types.rb', line 319

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

#to_s(level = 0) ⇒ Object



323
324
325
# File 'lib/rbs/types.rb', line 323

def to_s(level = 0)
  name.to_s
end