class Steep::TypeInference::MethodParams::BaseRestParameter

def ==(other)

def ==(other)
  other.class == self.class &&
    other.name == name &&
    other.type == type &&
    other.node == node
end

def hash

def hash
  self.class.hash ^ name.hash ^ type.hash ^ node.hash
end

def initialize(name:, type:, node:)

def initialize(name:, type:, node:)
  @name = name
  @type = type
  @node = node
end