PHPCfg\Visitor\VariableFinder::enterBlock PHP Method

enterBlock() public method

public enterBlock ( Block $block, Block $prior = null )
$block PHPCfg\Block
$prior PHPCfg\Block
    public function enterBlock(Block $block, Block $prior = null)
    {
        foreach ($block->phi as $phi) {
            $this->enterOp($phi, $block);
        }
    }