Flowdock
method

skip_tkspace

Importance_0
v1_8_7_72 - Show latest stable - 0 notes - Class: RDoc::RubyParser
skip_tkspace(skip_nl = true) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/parsers/parse_rb.rb, line 1516
    def skip_tkspace(skip_nl = true)
      tokens = []
      while ((tk = get_tk).kind_of?(TkSPACE) ||
             (skip_nl && tk.kind_of?(TkNL)))
        tokens.push tk
      end
      unget_tk(tk)
      tokens
    end
Register or log in to add new notes.