123456789_123456789_123456789_123456789_123456789_

Class: RBS::AST::Declarations::Alias

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
self, Base
Inherits: RBS::AST::Declarations::Base
Defined in: lib/rbs/ast/declarations.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name:, type_params:, type:, annotations:, location:, comment:) ⇒ Alias

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 276

def initialize(name:, type_params:, type:, annotations:, location:, comment:)
  @name = name
  @type_params = type_params
  @type = type
  @annotations = annotations
  @location = location
  @comment = comment
end

Instance Attribute Details

#annotations (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 272

attr_reader :annotations

#comment (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 274

attr_reader :comment

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 273

attr_reader :location

#name (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 269

attr_reader :name

#type (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 271

attr_reader :type

#type_params (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 270

attr_reader :type_params

Instance Method Details

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

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 285

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

#eql?(other)

Alias for #==.

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 292

alias eql? ==

#hash

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 294

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

#to_json(state = _ = nil)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 298

def to_json(state = _ = nil)
  {
    declaration: :alias,
    name: name,
    type_params: type_params,
    type: type,
    annotations: annotations,
    location: location,
    comment: comment
  }.to_json(state)
end