class RBS::Annotate::Annotations::Skip

def ==(other)

def ==(other)
  other.is_a?(Skip) &&
    other.skip_children == skip_children &&
    other.annotation == annotation
end

def hash

def hash
  self.class.hash ^ annotation.hash ^ skip_children.hash
end

def initialize(annotation:, skip_children:)

def initialize(annotation:, skip_children:)
  @annotation = annotation
  @skip_children = skip_children
end