Checks whether any of the given tokens matches the current lookahead
array $tokens:
boolean
public function isNextTokenAny(array $tokens) { return null !== $this->lookahead && in_array($this->lookahead['type'], $tokens, true); }