123456789_123456789_123456789_123456789_123456789_

Class: RBS::AST::Declarations::AliasDecl

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
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(new_name:, old_name:, location:, comment:, annotations: []) ⇒ AliasDecl

[ GitHub ]

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

def initialize(new_name:, old_name:, location:, comment:, annotations: [])
  @new_name = new_name
  @old_name = old_name
  @location = location
  @comment = comment
  @annotations = annotations
end

Instance Attribute Details

#annotations (readonly)

[ GitHub ]

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

attr_reader :new_name, :old_name, :location, :comment, :annotations

#comment (readonly)

[ GitHub ]

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

attr_reader :new_name, :old_name, :location, :comment, :annotations

#location (readonly)

[ GitHub ]

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

attr_reader :new_name, :old_name, :location, :comment, :annotations

#new_name (readonly)

[ GitHub ]

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

attr_reader :new_name, :old_name, :location, :comment, :annotations

#old_name (readonly)

[ GitHub ]

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

attr_reader :new_name, :old_name, :location, :comment, :annotations

Instance Method Details

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

[ GitHub ]

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

def ==(other)
  other.is_a?(self.class) &&
    other.new_name == new_name &&
    other.old_name == old_name
end

#eql?(other)

Alias for #==.

[ GitHub ]

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

alias eql? ==

#hash

[ GitHub ]

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

def hash
  self.class.hash ^ new_name.hash ^ old_name.hash
end