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

属性

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

公共类方法

new(name:, args:, location:) 点击切换源代码
# File rbs-3.8.0/lib/rbs/ast/declarations.rb, line 61
def initialize(name:, args:, location:)
  @name = name
  @args = args
  @location = location
end

公共实例方法

==(other) 点击切换源代码
# File rbs-3.8.0/lib/rbs/ast/declarations.rb, line 67
def ==(other)
  other.is_a?(Super) && other.name == name && other.args == args
end
别名为: eql?
eql?(other)
别名: ==
hash() 点击切换源代码
# File rbs-3.8.0/lib/rbs/ast/declarations.rb, line 73
def hash
  self.class.hash ^ name.hash ^ args.hash
end
to_json(state = _ = nil) 点击切换源代码
# File rbs-3.8.0/lib/rbs/ast/declarations.rb, line 77
def to_json(state = _ = nil)
  {
    name: name,
    args: args,
    location: location
  }.to_json(state)
end