Parses a finally block in a try-catch statement
Node\BlockStatement|null
protected function parseFinally() { if ($this->scanner ->consume("finally")) { if ($block = $this->parseBlock()) { return $block; } $this->error(); } return null; }