Lines Matching refs:nested
67 $nested = new C();
68 $obj = $reflector->newLazyProxy(function () use ($nested) {
69 return $nested;
72 $reflector->resetAsLazyProxy($nested, function () {
78 print "# Nested Proxy (nested initialized)\n";
80 $nested = new C();
81 $obj = $reflector->newLazyProxy(function () use ($nested) {
82 return $nested;
85 $reflector->resetAsLazyProxy($nested, function () {
88 $reflector->initializeLazyObject($nested);
133 # Nested Proxy (nested initialized)