Peeks at the next token, returns it and immediately resets the peek.
array|null The next token or NULL if there are no more tokens ahead.
public function glimpse() { $peek = $this ->peek(); $this->peek = 0; return $peek; }