In Files

  • rbs-2.1.0/lib/rbs/ast/declarations.rb

Parent

Class/Module Index [+]

Quicksearch

RBS::AST::Declarations::Module::Self

Attributes

args[R]
location[R]
name[R]

Public Class Methods

new(name:, args:, location:) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 139
def initialize(name,, args,, location))
  @name = name
  @args = args
  @location = location
end
            

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 145
def ==(other)
  other.is_a?(Self) && other.name == name && other.args == args
end
            
Also aliased as: eql?
eql?(other) click to toggle source
Alias for: ==
hash() click to toggle source
 
               # File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 151
def hash
  self.class.hash ^ name.hash ^ args.hash ^ location.hash
end
            
to_json(state = _ = nil) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 155
def to_json(state = _ = nil)
  {
    name: name,
    args: args,
    location: location
  }.to_json(state)
end
            
to_s() click to toggle source
 
               # File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 163
def to_s
  if args.empty?
    name.to_s
  else
    "#{name}[#{args.join(", ")}]"
  end
end
            
There is an updated format of the API docs for this version here.