class RBS::AST::Declarations::Class::Super

Attributes

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

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 67
def ==(other)
  other.is_a?(Super) && other.name == name && other.args == args
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 73
def hash
  self.class.hash ^ name.hash ^ args.hash
end
to_json(state = _ = nil) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 77
def to_json(state = _ = nil)
  {
    name: name,
    args: args,
    location: location
  }.to_json(state)
end