In Files

  • rbs-1.0.4/lib/rbs/ast/members.rb

Class/Module Index [+]

Quicksearch

RBS::AST::Members::Alias

Attributes

annotations[R]
comment[R]
kind[R]
location[R]
new_name[R]
old_name[R]

Public Class Methods

new(new_name:, old_name:, kind:, annotations:, location:, comment:) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 343
def initialize(new_name,, old_name,, kind,, annotations,, location,, comment))
  @new_name = new_name
  @old_name = old_name
  @kind = kind
  @annotations = annotations
  @location = location
  @comment = comment
end
            

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 352
def ==(other)
  other.is_a?(self.class) &&
    other.new_name == new_name &&
    other.old_name == old_name &&
    other.kind == kind
end
            
Also aliased as: eql?
eql?(other) click to toggle source
Alias for: ==
hash() click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 361
def hash
  self.class.hash ^ new_name.hash ^ old_name.hash ^ kind.hash
end
            
instance?() click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 377
def instance?
  kind == :instance
end
            
singleton?() click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 381
def singleton?
  kind == :singleton
end
            
to_json(*a) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/members.rb, line 365
def to_json(*a)
  {
    member: :alias,
    new_name: new_name,
    old_name: old_name,
    kind: kind,
    annotations: annotations,
    location: location,
    comment: comment
  }.to_json(*a)
end