class RDoc::Parser::Ruby
def parse_comment_attr container, type, name, comment # :nodoc:
def parse_comment_attr container, type, name, comment # :nodoc: return if name.empty? rw = case type when 'attr_reader' then 'R' when 'attr_writer' then 'W' else 'RW' end create_attr container, NORMAL, name, rw, comment end