class YARD::Parser::Ruby::Legacy::TokenList
def parse_content(content)
def parse_content(content) lex = RubyLex.new(content) loop do tk = lex.token break if tk.nil? self << convert_token(lex, tk) end end
def parse_content(content) lex = RubyLex.new(content) loop do tk = lex.token break if tk.nil? self << convert_token(lex, tk) end end