Skips next whitespace if any.
public function skipWhitespace() : void { $peek = $this->getPeek(); if ($peek->isWhitespace()) { $this->getNext(); } }