Checks whether any of the given tokens matches the current lookahead.
@psalm-assert-if-true !=null $this->lookahead
list<T> $types:
bool
public function isNextTokenAny(array $types) { return $this->lookahead !== null && $this->lookahead ->isA(...$types); }