class RuboCop::Cop::Layout::ExtraSpacing

def aligned_with_next_comment?(ix)

def aligned_with_next_comment?(ix)
  ix < processed_source.comments.length - 1 &&
    comment_column(ix + 1) == comment_column(ix)
end