Jackalope\ObjectManager::isNodeDeleted PHP Method

isNodeDeleted() public method

This is a simplistic check to be used by the Node to determine if it should not show one of the children the backend told it would exist.
See also: Node::__construct
public isNodeDeleted ( string $absPath ) : boolean
$absPath string The absolute path of the node
return boolean true if the current changed state has no node at this place
    public function isNodeDeleted($absPath)
    {
        return array_key_exists($absPath, $this->nodesRemove) && !(array_key_exists($absPath, $this->nodesAdd) && !$this->nodesAdd[$absPath]->skip || $this->getMoveSrcPath($absPath));
    }