public function watchFunctionExit(\Jamm\Memory\IKeyLocker $ExitWatcher = NULL)
{
if ($this->in_throw) {
$ExitWatcher->revoke();
return false;
}
$point_name = ':exit';
if (!empty($ExitWatcher)) {
$point_name = $ExitWatcher->getKey() . $point_name;
$ExitWatcher->revoke();
}
$this->setPoint($point_name);
}