method
identify_comment
identify_comment()
public
Hide source
# File lib/irb/ruby-lex.rb, line 1124 def identify_comment @ltype = "#" while ch = getc # if ch == "\\" #" # read_escape # end if ch == "\n" @ltype = nil ungetc break end end return Token(TkCOMMENT) end


