class Steep::AST::Annotation::Named

def ==(other)

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

def initialize(name:, type:, location: nil)

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