PHPCfg\Parser::parseExpr_ErrorSuppress PHP Method

parseExpr_ErrorSuppress() protected method

protected parseExpr_ErrorSuppress ( PhpParser\Node\Expr\ErrorSuppress $expr )
$expr PhpParser\Node\Expr\ErrorSuppress
    protected function parseExpr_ErrorSuppress(Expr\ErrorSuppress $expr)
    {
        $attrs = $this->mapAttributes($expr);
        $block = new ErrorSuppressBlock();
        $this->block->children[] = new Jump($block, $attrs);
        $this->block = $block;
        $result = $this->parseExprNode($expr->expr);
        $end = new Block();
        $this->block->children[] = new Jump($end, $attrs);
        $this->block = $end;
        return $result;
    }
Parser