method
identify_comment
identify_comment()
public
Hide source
# File lib/rdoc/parsers/parse_rb.rb, line 1269 def identify_comment @ltype = "#" comment = "#" while ch = getc if ch == "\\" ch = getc if ch == "\n" ch = " " else comment << "\\" end else if ch == "\n" @ltype = nil ungetc break end end comment << ch end return Token(TkCOMMENT).set_text(comment) end


