Whether the next token starts immediately, or if there were non-captured symbols before that
public function nextTokenIsAdjacent() : bool { return $this->token === null || $this->lookahead !== null && $this->lookahead->position - $this->token->position === strlen($this->token->value); }