module RuboCop::Cop::Style::AnnotationComment

def split_comment(comment)

Other tags:
    Api: - public
def split_comment(comment)
  match = comment.text.match(/^(# ?)([A-Za-z]+)(\s*:)?(\s+)?(\S+)?/)
  return false unless match
  match.captures
end