class Crass::TokenScanner
def consume
Consumes the next token and returns it, advancing the pointer. Returns
def consume @current = @tokens[@pos] @pos += 1 if @current @current end
def consume @current = @tokens[@pos] @pos += 1 if @current @current end