Parses an empty statement
Node\EmptyStatement|null
protected function parseEmptyStatement() { if ($token = $this->scanner ->consume(";")) { $node = $this->createNode("EmptyStatement", $token); return $this->completeNode($node); } return null; }