Class: RBS::Types::Alias
- Inherits:
-
Object
- Object
- RBS::Types::Alias
- Includes:
- EmptyEachType, NoFreeVariables, NoSubst
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #hash ⇒ Object
-
#initialize(name:, location:) ⇒ Alias
constructor
A new instance of Alias.
- #map_type_name ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
Methods included from EmptyEachType
Methods included from NoSubst
Methods included from NoFreeVariables
Constructor Details
#initialize(name:, location:) ⇒ Alias
Returns a new instance of Alias.
300 301 302 303 |
# File 'lib/rbs/types.rb', line 300 def initialize(name:, location:) @name = name @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
297 298 299 |
# File 'lib/rbs/types.rb', line 297 def location @location end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
298 299 300 |
# File 'lib/rbs/types.rb', line 298 def name @name end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
305 306 307 |
# File 'lib/rbs/types.rb', line 305 def ==(other) other.is_a?(Alias) && other.name == name end |
#hash ⇒ Object
311 312 313 |
# File 'lib/rbs/types.rb', line 311 def hash self.class.hash ^ name.hash end |
#map_type_name ⇒ Object
328 329 330 331 332 333 |
# File 'lib/rbs/types.rb', line 328 def map_type_name Alias.new( name: yield(name, location, self), location: location ) end |
#to_json(state = _ = nil) ⇒ Object
318 319 320 |
# File 'lib/rbs/types.rb', line 318 def to_json(state = _ = nil) { class: :alias, name: name, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
322 323 324 |
# File 'lib/rbs/types.rb', line 322 def to_s(level = 0) name.to_s end |