class RDoc::Markdown

def _AutoLink

AutoLink = (AutoLinkUrl | AutoLinkEmail)
def _AutoLink
  _save = self.pos
  while true # choice
    _tmp = apply(:_AutoLinkUrl)
    break if _tmp
    self.pos = _save
    _tmp = apply(:_AutoLinkEmail)
    break if _tmp
    self.pos = _save
    break
  end # end choice
  set_failed_rule :_AutoLink unless _tmp
  return _tmp
end