method

identify_comment

v1_9_1_378 - Show latest stable - Class: RDoc::RubyLex
identify_comment()
public

No documentation available.

# File lib/rdoc/parser/ruby.rb, line 1256
  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