Phan\Parse\ParseVisitor::visitPrint PHP Method

visitPrint() public method

Visit a node with kind \ast\AST_PRINT
public visitPrint ( ast\Node $node ) : Context
$node ast\Node A node to parse
return Phan\Language\Context A new or an unchanged context resulting from parsing the node
    public function visitPrint(Node $node) : Context
    {
        return $this->visitReturn($node);
    }