module RBS::AST::Members::Var
def ==(other)
def ==(other) other.is_a?(self.class) && other.name == name && other.type == type end
def hash
def hash name.hash ^ type.hash end
def initialize(name:, type:, location:, comment:)
def initialize(name:, type:, location:, comment:) @name = name @type = type @location = location @comment = comment end