This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
skip_tkspace(skip_nl = true)
public
Skips whitespace tokens including newlines if skip_nl is true
# File lib/rdoc/parser/ruby_tools.rb, line 129
def skip_tkspace(skip_nl = true) # HACK dup
tokens = []
while TkSPACE === (tk = get_tk) or (skip_nl and TkNL === tk) do
tokens.push tk
end
unget_tk tk
tokens
end