class Steep::AST::Annotation::Typed

def ==(other)

def ==(other)
  other.is_a?(self.class) &&
    other.type == type
end

def initialize(type:, location: nil)

def initialize(type:, location: nil)
  @type = type
  @location = location
end