next_token()
Instance Public methods
The method to fetch next token. If you use do_parse method, you must implement next_token.
The format of return value is [TOKEN_SYMBOL, VALUE].
token-symbol
is represented by Ruby's symbol by default,
e.g. :IDENT for 'IDENT'. â;â (String) for ';'.
The final symbol (End of file) must be false.
Please login to continue.