module RDoc::Parser::RubyTools

def skip_tkspace

def skip_tkspace
  tokens = []
  while (tk = get_tk) and (:on_sp == tk[:kind] or :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]) do
    tokens.push(tk)
  end
  unget_tk(tk)
  tokens
end