/**
* @param object &$var
*/
protected function blacklistValue(&
$var, Value &
$o): void
{ $object =
new InstanceValue();
$object->
transplant($o);
$object->classname = \
get_class($var);
$object->spl_object_hash = \
spl_object_hash($var);
$object->
clearRepresentations();
$object->value = null;
$object->size = null;
$object->hints
[] = 'blacklist';
$o =
$object;
$this->parser->
haltParse();
}}