123456789_123456789_123456789_123456789_123456789_

Class: RBS::Types::Alias

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
Inherits: Object
Defined in: lib/rbs/types.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name:, location:) ⇒ Alias

[ GitHub ]

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

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

Instance Attribute Details

#location (readonly)

[ GitHub ]

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

attr_reader :location

#name (readonly)

[ GitHub ]

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

attr_reader :name

Instance Method Details

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

[ GitHub ]

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

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

#eql?(other)

Alias for #==.

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 310

alias eql? ==

#hash

[ GitHub ]

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

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

#map_type_name

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 329

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

#to_json(state = _ = nil)

[ GitHub ]

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

def to_json(state = _ = nil)
  { class: :alias, name: name, location: location }.to_json(state)
end

#to_s(level = 0)

[ GitHub ]

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

def to_s(level = 0)
  name.to_s
end