3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Closable { public readonly string $key; private bool $closed = false; public function __construct() { $this->key = uniqid('closable_'); $this->e('__construct'); } private function e(string $out): void { echo $this->key, ': ', $out, "\n"; } public function close(): void { $this->e('close'); $this->e($this->closed ? 'closed' : 'open'); $this->closed = true; } public function __destroy(): void { $this->e('__destroy'); $this->close(); } public static function make(): Closable { return new self(); } } function a(): void { echo "a() start\n"; $a = Closable::make(); echo "a() end\n"; } function b(): void { echo "b() start\n"; $b = Closable::make(); try { if (rand(0,1)) { throw new Exception('b()'); } echo "b() return\n"; unset($b); return; } catch (Exception) { echo "b() catch\n"; } finally { echo "b() finally\n"; $b?->close(); } } Closable::make(); $foo = Closable::make(); Closable::make(); for ($i = 0; $i <= 10; $i++) { a(); b(); }
Output for 8.3.11
closable_66e93e8506485: __construct closable_66e93e85064b3: __construct closable_66e93e85064bc: __construct a() start closable_66e93e85064c5: __construct a() end b() start closable_66e93e85064d0: __construct b() catch b() finally closable_66e93e85064d0: close closable_66e93e85064d0: open a() start closable_66e93e8506505: __construct a() end b() start closable_66e93e8506510: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850652d: __construct a() end b() start closable_66e93e850653a: __construct b() catch b() finally closable_66e93e850653a: close closable_66e93e850653a: open a() start closable_66e93e8506556: __construct a() end b() start closable_66e93e8506561: __construct b() catch b() finally closable_66e93e8506561: close closable_66e93e8506561: open a() start closable_66e93e850657d: __construct a() end b() start closable_66e93e8506587: __construct b() catch b() finally closable_66e93e8506587: close closable_66e93e8506587: open a() start closable_66e93e85065a1: __construct a() end b() start closable_66e93e85065ad: __construct b() catch b() finally closable_66e93e85065ad: close closable_66e93e85065ad: open a() start closable_66e93e85065c9: __construct a() end b() start closable_66e93e85065d4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85065e5: __construct a() end b() start closable_66e93e85065ef: __construct b() catch b() finally closable_66e93e85065ef: close closable_66e93e85065ef: open a() start closable_66e93e850660b: __construct a() end b() start closable_66e93e8506616: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8506627: __construct a() end b() start closable_66e93e8506631: __construct b() catch b() finally closable_66e93e8506631: close closable_66e93e8506631: open a() start closable_66e93e850664c: __construct a() end b() start closable_66e93e8506657: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.10
closable_66e93e8507da5: __construct closable_66e93e8507dd3: __construct closable_66e93e8507ddc: __construct a() start closable_66e93e8507de6: __construct a() end b() start closable_66e93e8507df0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507e31: __construct a() end b() start closable_66e93e8507e3e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507e57: __construct a() end b() start closable_66e93e8507e67: __construct b() catch b() finally closable_66e93e8507e67: close closable_66e93e8507e67: open a() start closable_66e93e8507e91: __construct a() end b() start closable_66e93e8507ea2: __construct b() catch b() finally closable_66e93e8507ea2: close closable_66e93e8507ea2: open a() start closable_66e93e8507ecb: __construct a() end b() start closable_66e93e8507eda: __construct b() catch b() finally closable_66e93e8507eda: close closable_66e93e8507eda: open a() start closable_66e93e8507ef8: __construct a() end b() start closable_66e93e8507f04: __construct b() catch b() finally closable_66e93e8507f04: close closable_66e93e8507f04: open a() start closable_66e93e8507f2c: __construct a() end b() start closable_66e93e8507f3b: __construct b() catch b() finally closable_66e93e8507f3b: close closable_66e93e8507f3b: open a() start closable_66e93e8507f5b: __construct a() end b() start closable_66e93e8507f66: __construct b() catch b() finally closable_66e93e8507f66: close closable_66e93e8507f66: open a() start closable_66e93e8507f88: __construct a() end b() start closable_66e93e8507f98: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507faf: __construct a() end b() start closable_66e93e8507fbc: __construct b() catch b() finally closable_66e93e8507fbc: close closable_66e93e8507fbc: open a() start closable_66e93e8507fd9: __construct a() end b() start closable_66e93e8507fe4: __construct b() catch b() finally closable_66e93e8507fe4: close closable_66e93e8507fe4: open
Output for 8.3.9
closable_66e93e8507652: __construct closable_66e93e850767e: __construct closable_66e93e8507687: __construct a() start closable_66e93e8507690: __construct a() end b() start closable_66e93e850769b: __construct b() catch b() finally closable_66e93e850769b: close closable_66e93e850769b: open a() start closable_66e93e85076d6: __construct a() end b() start closable_66e93e85076e1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85076fc: __construct a() end b() start closable_66e93e8507706: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507716: __construct a() end b() start closable_66e93e850771f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850772e: __construct a() end b() start closable_66e93e8507738: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507746: __construct a() end b() start closable_66e93e8507750: __construct b() catch b() finally closable_66e93e8507750: close closable_66e93e8507750: open a() start closable_66e93e850776a: __construct a() end b() start closable_66e93e8507774: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507782: __construct a() end b() start closable_66e93e850778c: __construct b() catch b() finally closable_66e93e850778c: close closable_66e93e850778c: open a() start closable_66e93e85077a5: __construct a() end b() start closable_66e93e85077af: __construct b() catch b() finally closable_66e93e85077af: close closable_66e93e85077af: open a() start closable_66e93e85077c7: __construct a() end b() start closable_66e93e85077d1: __construct b() catch b() finally closable_66e93e85077d1: close closable_66e93e85077d1: open a() start closable_66e93e850782e: __construct a() end b() start closable_66e93e850783b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.8
closable_66e93e8507e13: __construct closable_66e93e8507e3f: __construct closable_66e93e8507e49: __construct a() start closable_66e93e8507e52: __construct a() end b() start closable_66e93e8507e5b: __construct b() catch b() finally closable_66e93e8507e5b: close closable_66e93e8507e5b: open a() start closable_66e93e8507ea0: __construct a() end b() start closable_66e93e8507eab: __construct b() catch b() finally closable_66e93e8507eab: close closable_66e93e8507eab: open a() start closable_66e93e8507ec7: __construct a() end b() start closable_66e93e8507ed0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507eee: __construct a() end b() start closable_66e93e8507ef9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f08: __construct a() end b() start closable_66e93e8507f12: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f20: __construct a() end b() start closable_66e93e8507f2a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f39: __construct a() end b() start closable_66e93e8507f43: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f51: __construct a() end b() start closable_66e93e8507f5b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f69: __construct a() end b() start closable_66e93e8507f73: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507f81: __construct a() end b() start closable_66e93e8507fac: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507fba: __construct a() end b() start closable_66e93e8507fc4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.7
closable_66e93e850542e: __construct closable_66e93e850544a: __construct closable_66e93e850544e: __construct a() start closable_66e93e8505453: __construct a() end b() start closable_66e93e8505458: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505471: __construct a() end b() start closable_66e93e8505476: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850547d: __construct a() end b() start closable_66e93e8505482: __construct b() catch b() finally closable_66e93e8505482: close closable_66e93e8505482: open a() start closable_66e93e850549b: __construct a() end b() start closable_66e93e85054a0: __construct b() catch b() finally closable_66e93e85054a0: close closable_66e93e85054a0: open a() start closable_66e93e85054ac: __construct a() end b() start closable_66e93e85054b1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85054da: __construct a() end b() start closable_66e93e85054df: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85054e6: __construct a() end b() start closable_66e93e85054ea: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85054f1: __construct a() end b() start closable_66e93e85054f6: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85054fd: __construct a() end b() start closable_66e93e8505501: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505508: __construct a() end b() start closable_66e93e850550d: __construct b() catch b() finally closable_66e93e850550d: close closable_66e93e850550d: open a() start closable_66e93e8505519: __construct a() end b() start closable_66e93e850551e: __construct b() catch b() finally closable_66e93e850551e: close closable_66e93e850551e: open
Output for 8.3.6
closable_66e93e8504c54: __construct closable_66e93e8504c75: __construct closable_66e93e8504c7b: __construct a() start closable_66e93e8504c81: __construct a() end b() start closable_66e93e8504c89: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504cb3: __construct a() end b() start closable_66e93e8504ccc: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504cd4: __construct a() end b() start closable_66e93e8504cd9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504cdf: __construct a() end b() start closable_66e93e8504ce4: __construct b() catch b() finally closable_66e93e8504ce4: close closable_66e93e8504ce4: open a() start closable_66e93e8504cf8: __construct a() end b() start closable_66e93e8504cfd: __construct b() catch b() finally closable_66e93e8504cfd: close closable_66e93e8504cfd: open a() start closable_66e93e8504d09: __construct a() end b() start closable_66e93e8504d0e: __construct b() catch b() finally closable_66e93e8504d0e: close closable_66e93e8504d0e: open a() start closable_66e93e8504d1a: __construct a() end b() start closable_66e93e8504d1f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d26: __construct a() end b() start closable_66e93e8504d2b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d32: __construct a() end b() start closable_66e93e8504d37: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d3e: __construct a() end b() start closable_66e93e8504d43: __construct b() catch b() finally closable_66e93e8504d43: close closable_66e93e8504d43: open a() start closable_66e93e8504d4f: __construct a() end b() start closable_66e93e8504d53: __construct b() catch b() finally closable_66e93e8504d53: close closable_66e93e8504d53: open
Output for 8.3.5
closable_66e93e8504cb0: __construct closable_66e93e8504cd0: __construct closable_66e93e8504cd5: __construct a() start closable_66e93e8504cda: __construct a() end b() start closable_66e93e8504cdf: __construct b() catch b() finally closable_66e93e8504cdf: close closable_66e93e8504cdf: open a() start closable_66e93e8504d1d: __construct a() end b() start closable_66e93e8504d22: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d31: __construct a() end b() start closable_66e93e8504d37: __construct b() catch b() finally closable_66e93e8504d37: close closable_66e93e8504d37: open a() start closable_66e93e8504d43: __construct a() end b() start closable_66e93e8504d47: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d4d: __construct a() end b() start closable_66e93e8504d51: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d57: __construct a() end b() start closable_66e93e8504d5b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d60: __construct a() end b() start closable_66e93e8504d64: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d6a: __construct a() end b() start closable_66e93e8504d6d: __construct b() catch b() finally closable_66e93e8504d6d: close closable_66e93e8504d6d: open a() start closable_66e93e8504d77: __construct a() end b() start closable_66e93e8504d7b: __construct b() catch b() finally closable_66e93e8504d7b: close closable_66e93e8504d7b: open a() start closable_66e93e8504d85: __construct a() end b() start closable_66e93e8504d89: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d8f: __construct a() end b() start closable_66e93e8504d92: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.4
closable_66e93e8505b61: __construct closable_66e93e8505b8b: __construct closable_66e93e8505b90: __construct a() start closable_66e93e8505b95: __construct a() end b() start closable_66e93e8505b9b: __construct b() catch b() finally closable_66e93e8505b9b: close closable_66e93e8505b9b: open a() start closable_66e93e8505bbb: __construct a() end b() start closable_66e93e8505bc1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bcd: __construct a() end b() start closable_66e93e8505bd3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bdd: __construct a() end b() start closable_66e93e8505be4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bed: __construct a() end b() start closable_66e93e8505bf4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bfd: __construct a() end b() start closable_66e93e8505c03: __construct b() catch b() finally closable_66e93e8505c03: close closable_66e93e8505c03: open a() start closable_66e93e8505c15: __construct a() end b() start closable_66e93e8505c1d: __construct b() catch b() finally closable_66e93e8505c1d: close closable_66e93e8505c1d: open a() start closable_66e93e8505c30: __construct a() end b() start closable_66e93e8505c35: __construct b() catch b() finally closable_66e93e8505c35: close closable_66e93e8505c35: open a() start closable_66e93e8505c41: __construct a() end b() start closable_66e93e8505c46: __construct b() catch b() finally closable_66e93e8505c46: close closable_66e93e8505c46: open a() start closable_66e93e8505c52: __construct a() end b() start closable_66e93e8505c56: __construct b() catch b() finally closable_66e93e8505c56: close closable_66e93e8505c56: open a() start closable_66e93e8505c65: __construct a() end b() start closable_66e93e8505c6d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.3
closable_66e93e8504a9e: __construct closable_66e93e8504ac1: __construct closable_66e93e8504ac4: __construct a() start closable_66e93e8504aca: __construct a() end b() start closable_66e93e8504acf: __construct b() catch b() finally closable_66e93e8504acf: close closable_66e93e8504acf: open a() start closable_66e93e85051b1: __construct a() end b() start closable_66e93e85051c4: __construct b() catch b() finally closable_66e93e85051c4: close closable_66e93e85051c4: open a() start closable_66e93e85051d5: __construct a() end b() start closable_66e93e85051dc: __construct b() catch b() finally closable_66e93e85051dc: close closable_66e93e85051dc: open a() start closable_66e93e85051e9: __construct a() end b() start closable_66e93e85051ef: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85051f9: __construct a() end b() start closable_66e93e85051fe: __construct b() catch b() finally closable_66e93e85051fe: close closable_66e93e85051fe: open a() start closable_66e93e850520c: __construct a() end b() start closable_66e93e8505211: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850521a: __construct a() end b() start closable_66e93e8505222: __construct b() catch b() finally closable_66e93e8505222: close closable_66e93e8505222: open a() start closable_66e93e8505234: __construct a() end b() start closable_66e93e850523a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505242: __construct a() end b() start closable_66e93e8505247: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850524f: __construct a() end b() start closable_66e93e8505254: __construct b() catch b() finally closable_66e93e8505254: close closable_66e93e8505254: open a() start closable_66e93e8505261: __construct a() end b() start closable_66e93e8505265: __construct b() catch b() finally closable_66e93e8505265: close closable_66e93e8505265: open
Output for 8.3.2
closable_66e93e8504612: __construct closable_66e93e8504636: __construct closable_66e93e850463b: __construct a() start closable_66e93e8504640: __construct a() end b() start closable_66e93e8504645: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850465b: __construct a() end b() start closable_66e93e850465f: __construct b() catch b() finally closable_66e93e850465f: close closable_66e93e850465f: open a() start closable_66e93e8504676: __construct a() end b() start closable_66e93e850467b: __construct b() catch b() finally closable_66e93e850467b: close closable_66e93e850467b: open a() start closable_66e93e8504689: __construct a() end b() start closable_66e93e850468e: __construct b() catch b() finally closable_66e93e850468e: close closable_66e93e850468e: open a() start closable_66e93e850469a: __construct a() end b() start closable_66e93e850469f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046a7: __construct a() end b() start closable_66e93e85046ac: __construct b() catch b() finally closable_66e93e85046ac: close closable_66e93e85046ac: open a() start closable_66e93e85046b8: __construct a() end b() start closable_66e93e85046bd: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046c4: __construct a() end b() start closable_66e93e85046c9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046d0: __construct a() end b() start closable_66e93e85046d5: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046dc: __construct a() end b() start closable_66e93e85046e1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046e8: __construct a() end b() start closable_66e93e85046ed: __construct b() catch b() finally closable_66e93e85046ed: close closable_66e93e85046ed: open
Output for 8.3.1
closable_66e93e8503ff2: __construct closable_66e93e8504013: __construct closable_66e93e8504018: __construct a() start closable_66e93e850401d: __construct a() end b() start closable_66e93e8504023: __construct b() catch b() finally closable_66e93e8504023: close closable_66e93e8504023: open a() start closable_66e93e8504043: __construct a() end b() start closable_66e93e8504048: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504054: __construct a() end b() start closable_66e93e8504059: __construct b() catch b() finally closable_66e93e8504059: close closable_66e93e8504059: open a() start closable_66e93e8504068: __construct a() end b() start closable_66e93e850406d: __construct b() catch b() finally closable_66e93e850406d: close closable_66e93e850406d: open a() start closable_66e93e850407a: __construct a() end b() start closable_66e93e850407f: __construct b() catch b() finally closable_66e93e850407f: close closable_66e93e850407f: open a() start closable_66e93e850408c: __construct a() end b() start closable_66e93e8504091: __construct b() catch b() finally closable_66e93e8504091: close closable_66e93e8504091: open a() start closable_66e93e850409e: __construct a() end b() start closable_66e93e85040a3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85040ab: __construct a() end b() start closable_66e93e85040b0: __construct b() catch b() finally closable_66e93e85040b0: close closable_66e93e85040b0: open a() start closable_66e93e85040d9: __construct a() end b() start closable_66e93e85040de: __construct b() catch b() finally closable_66e93e85040de: close closable_66e93e85040de: open a() start closable_66e93e85040eb: __construct a() end b() start closable_66e93e85040f0: __construct b() catch b() finally closable_66e93e85040f0: close closable_66e93e85040f0: open a() start closable_66e93e85040fd: __construct a() end b() start closable_66e93e8504102: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.3.0
closable_66e93e85030c8: __construct closable_66e93e85030eb: __construct closable_66e93e85030ef: __construct a() start closable_66e93e85030f5: __construct a() end b() start closable_66e93e85030fa: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503114: __construct a() end b() start closable_66e93e8503119: __construct b() catch b() finally closable_66e93e8503119: close closable_66e93e8503119: open a() start closable_66e93e8503132: __construct a() end b() start closable_66e93e8503137: __construct b() catch b() finally closable_66e93e8503137: close closable_66e93e8503137: open a() start closable_66e93e8503145: __construct a() end b() start closable_66e93e8503149: __construct b() catch b() finally closable_66e93e8503149: close closable_66e93e8503149: open a() start closable_66e93e8503156: __construct a() end b() start closable_66e93e850315b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503163: __construct a() end b() start closable_66e93e8503168: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850316f: __construct a() end b() start closable_66e93e8503174: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850317b: __construct a() end b() start closable_66e93e8503180: __construct b() catch b() finally closable_66e93e8503180: close closable_66e93e8503180: open a() start closable_66e93e850318f: __construct a() end b() start closable_66e93e8503194: __construct b() catch b() finally closable_66e93e8503194: close closable_66e93e8503194: open a() start closable_66e93e85031a0: __construct a() end b() start closable_66e93e85031a5: __construct b() catch b() finally closable_66e93e85031a5: close closable_66e93e85031a5: open a() start closable_66e93e85031b2: __construct a() end b() start closable_66e93e85031b7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.23
closable_66e93e850420d: __construct closable_66e93e8504226: __construct closable_66e93e850422a: __construct a() start closable_66e93e850422f: __construct a() end b() start closable_66e93e8504233: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850424c: __construct a() end b() start closable_66e93e8504251: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850425a: __construct a() end b() start closable_66e93e850425e: __construct b() catch b() finally closable_66e93e850425e: close closable_66e93e850425e: open a() start closable_66e93e8504273: __construct a() end b() start closable_66e93e8504278: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850427f: __construct a() end b() start closable_66e93e8504284: __construct b() catch b() finally closable_66e93e8504284: close closable_66e93e8504284: open a() start closable_66e93e8504291: __construct a() end b() start closable_66e93e8504296: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850429d: __construct a() end b() start closable_66e93e85042a2: __construct b() catch b() finally closable_66e93e85042a2: close closable_66e93e85042a2: open a() start closable_66e93e85042af: __construct a() end b() start closable_66e93e85042b4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042bb: __construct a() end b() start closable_66e93e85042bf: __construct b() catch b() finally closable_66e93e85042bf: close closable_66e93e85042bf: open a() start closable_66e93e85042cb: __construct a() end b() start closable_66e93e85042d0: __construct b() catch b() finally closable_66e93e85042d0: close closable_66e93e85042d0: open a() start closable_66e93e85042dd: __construct a() end b() start closable_66e93e85042e1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.22
closable_66e93e8503128: __construct closable_66e93e8503141: __construct closable_66e93e8503146: __construct a() start closable_66e93e850314b: __construct a() end b() start closable_66e93e8503150: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850316b: __construct a() end b() start closable_66e93e8503170: __construct b() catch b() finally closable_66e93e8503170: close closable_66e93e8503170: open a() start closable_66e93e8503185: __construct a() end b() start closable_66e93e850318a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503191: __construct a() end b() start closable_66e93e8503196: __construct b() catch b() finally closable_66e93e8503196: close closable_66e93e8503196: open a() start closable_66e93e85031a4: __construct a() end b() start closable_66e93e85031a8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85031b0: __construct a() end b() start closable_66e93e85031b5: __construct b() catch b() finally closable_66e93e85031b5: close closable_66e93e85031b5: open a() start closable_66e93e85031c1: __construct a() end b() start closable_66e93e85031c6: __construct b() catch b() finally closable_66e93e85031c6: close closable_66e93e85031c6: open a() start closable_66e93e85031d3: __construct a() end b() start closable_66e93e85031d7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85031df: __construct a() end b() start closable_66e93e85031e4: __construct b() catch b() finally closable_66e93e85031e4: close closable_66e93e85031e4: open a() start closable_66e93e85031f0: __construct a() end b() start closable_66e93e85031f5: __construct b() catch b() finally closable_66e93e85031f5: close closable_66e93e85031f5: open a() start closable_66e93e8503201: __construct a() end b() start closable_66e93e8503206: __construct b() catch b() finally closable_66e93e8503206: close closable_66e93e8503206: open
Output for 8.2.21
closable_66e93e8503f63: __construct closable_66e93e8503f80: __construct closable_66e93e8503f84: __construct a() start closable_66e93e8503f8b: __construct a() end b() start closable_66e93e8503f90: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503fae: __construct a() end b() start closable_66e93e8503fb4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503fbd: __construct a() end b() start closable_66e93e8503fc3: __construct b() catch b() finally closable_66e93e8503fc3: close closable_66e93e8503fc3: open a() start closable_66e93e8503fdb: __construct a() end b() start closable_66e93e8503fe2: __construct b() catch b() finally closable_66e93e8503fe2: close closable_66e93e8503fe2: open a() start closable_66e93e8503ff2: __construct a() end b() start closable_66e93e8503ff7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504001: __construct a() end b() start closable_66e93e8504007: __construct b() catch b() finally closable_66e93e8504007: close closable_66e93e8504007: open a() start closable_66e93e8504016: __construct a() end b() start closable_66e93e850401c: __construct b() catch b() finally closable_66e93e850401c: close closable_66e93e850401c: open a() start closable_66e93e850402b: __construct a() end b() start closable_66e93e8504031: __construct b() catch b() finally closable_66e93e8504031: close closable_66e93e8504031: open a() start closable_66e93e850403f: __construct a() end b() start closable_66e93e8504044: __construct b() catch b() finally closable_66e93e8504044: close closable_66e93e8504044: open a() start closable_66e93e8504052: __construct a() end b() start closable_66e93e8504058: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504061: __construct a() end b() start closable_66e93e8504068: __construct b() catch b() finally closable_66e93e8504068: close closable_66e93e8504068: open
Output for 8.2.20
closable_66e93e8504304: __construct closable_66e93e8504318: __construct closable_66e93e850431c: __construct a() start closable_66e93e8504320: __construct a() end b() start closable_66e93e8504325: __construct b() catch b() finally closable_66e93e8504325: close closable_66e93e8504325: open a() start closable_66e93e8504348: __construct a() end b() start closable_66e93e850434f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504363: __construct a() end b() start closable_66e93e8504367: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850436e: __construct a() end b() start closable_66e93e8504373: __construct b() catch b() finally closable_66e93e8504373: close closable_66e93e8504373: open a() start closable_66e93e850437f: __construct a() end b() start closable_66e93e8504384: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850438d: __construct a() end b() start closable_66e93e8504394: __construct b() catch b() finally closable_66e93e8504394: close closable_66e93e8504394: open a() start closable_66e93e85043a3: __construct a() end b() start closable_66e93e85043a8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85043ae: __construct a() end b() start closable_66e93e85043b2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85043b9: __construct a() end b() start closable_66e93e85043be: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85043c4: __construct a() end b() start closable_66e93e85043c9: __construct b() catch b() finally closable_66e93e85043c9: close closable_66e93e85043c9: open a() start closable_66e93e85043d4: __construct a() end b() start closable_66e93e85043d9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.19
closable_66e93e8503630: __construct closable_66e93e850364a: __construct closable_66e93e850364e: __construct a() start closable_66e93e8503653: __construct a() end b() start closable_66e93e8503658: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503678: __construct a() end b() start closable_66e93e850367e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503686: __construct a() end b() start closable_66e93e850368b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503692: __construct a() end b() start closable_66e93e8503697: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850369e: __construct a() end b() start closable_66e93e85036a3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036aa: __construct a() end b() start closable_66e93e85036af: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036b6: __construct a() end b() start closable_66e93e85036bb: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036c2: __construct a() end b() start closable_66e93e85036c7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036ce: __construct a() end b() start closable_66e93e85036d3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036da: __construct a() end b() start closable_66e93e85036df: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85036e6: __construct a() end b() start closable_66e93e85036eb: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.18
closable_66e93e8503a9e: __construct closable_66e93e8503abd: __construct closable_66e93e8503ac1: __construct a() start closable_66e93e8503ac6: __construct a() end b() start closable_66e93e8503acc: __construct b() catch b() finally closable_66e93e8503acc: close closable_66e93e8503acc: open a() start closable_66e93e8503af2: __construct a() end b() start closable_66e93e8503af8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b08: __construct a() end b() start closable_66e93e8503b0d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b14: __construct a() end b() start closable_66e93e8503b19: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b20: __construct a() end b() start closable_66e93e8503b24: __construct b() catch b() finally closable_66e93e8503b24: close closable_66e93e8503b24: open a() start closable_66e93e8503b32: __construct a() end b() start closable_66e93e8503b37: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b3d: __construct a() end b() start closable_66e93e8503b42: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b48: __construct a() end b() start closable_66e93e8503b4d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b53: __construct a() end b() start closable_66e93e8503b58: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b5f: __construct a() end b() start closable_66e93e8503b64: __construct b() catch b() finally closable_66e93e8503b64: close closable_66e93e8503b64: open a() start closable_66e93e8503b70: __construct a() end b() start closable_66e93e8503b75: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.17
closable_66e93e8505693: __construct closable_66e93e85056b6: __construct closable_66e93e85056bb: __construct a() start closable_66e93e85056c0: __construct a() end b() start closable_66e93e85056c6: __construct b() catch b() finally closable_66e93e85056c6: close closable_66e93e85056c6: open a() start closable_66e93e85056ec: __construct a() end b() start closable_66e93e85056f3: __construct b() catch b() finally closable_66e93e85056f3: close closable_66e93e85056f3: open a() start closable_66e93e8505705: __construct a() end b() start closable_66e93e850570b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505718: __construct a() end b() start closable_66e93e850571e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505726: __construct a() end b() start closable_66e93e850572b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505733: __construct a() end b() start closable_66e93e8505739: __construct b() catch b() finally closable_66e93e8505739: close closable_66e93e8505739: open a() start closable_66e93e8505756: __construct a() end b() start closable_66e93e850575c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505764: __construct a() end b() start closable_66e93e850576a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505772: __construct a() end b() start closable_66e93e8505777: __construct b() catch b() finally closable_66e93e8505777: close closable_66e93e8505777: open a() start closable_66e93e8505786: __construct a() end b() start closable_66e93e850578c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505794: __construct a() end b() start closable_66e93e850579a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.16
closable_66e93e8504539: __construct closable_66e93e8504559: __construct closable_66e93e850455d: __construct a() start closable_66e93e8504561: __construct a() end b() start closable_66e93e8504565: __construct b() catch b() finally closable_66e93e8504565: close closable_66e93e8504565: open a() start closable_66e93e850457f: __construct a() end b() start closable_66e93e8504586: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504590: __construct a() end b() start closable_66e93e8504595: __construct b() catch b() finally closable_66e93e8504595: close closable_66e93e8504595: open a() start closable_66e93e85045a2: __construct a() end b() start closable_66e93e85045a7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85045ae: __construct a() end b() start closable_66e93e85045b3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85045ba: __construct a() end b() start closable_66e93e85045bf: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85045c6: __construct a() end b() start closable_66e93e85045cb: __construct b() catch b() finally closable_66e93e85045cb: close closable_66e93e85045cb: open a() start closable_66e93e85045d7: __construct a() end b() start closable_66e93e85045db: __construct b() catch b() finally closable_66e93e85045db: close closable_66e93e85045db: open a() start closable_66e93e85045e8: __construct a() end b() start closable_66e93e85045ec: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85045f3: __construct a() end b() start closable_66e93e85045f8: __construct b() catch b() finally closable_66e93e85045f8: close closable_66e93e85045f8: open a() start closable_66e93e8504603: __construct a() end b() start closable_66e93e8504608: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.15
closable_66e93e85047f0: __construct closable_66e93e8504817: __construct closable_66e93e850481b: __construct a() start closable_66e93e850481f: __construct a() end b() start closable_66e93e8504823: __construct b() catch b() finally closable_66e93e8504823: close closable_66e93e8504823: open a() start closable_66e93e8504840: __construct a() end b() start closable_66e93e8504845: __construct b() catch b() finally closable_66e93e8504845: close closable_66e93e8504845: open a() start closable_66e93e8504853: __construct a() end b() start closable_66e93e8504858: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504862: __construct a() end b() start closable_66e93e8504866: __construct b() catch b() finally closable_66e93e8504866: close closable_66e93e8504866: open a() start closable_66e93e8504872: __construct a() end b() start closable_66e93e8504877: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850487e: __construct a() end b() start closable_66e93e8504883: __construct b() catch b() finally closable_66e93e8504883: close closable_66e93e8504883: open a() start closable_66e93e8504890: __construct a() end b() start closable_66e93e8504894: __construct b() catch b() finally closable_66e93e8504894: close closable_66e93e8504894: open a() start closable_66e93e85048a0: __construct a() end b() start closable_66e93e85048a5: __construct b() catch b() finally closable_66e93e85048a5: close closable_66e93e85048a5: open a() start closable_66e93e85048b1: __construct a() end b() start closable_66e93e85048b6: __construct b() catch b() finally closable_66e93e85048b6: close closable_66e93e85048b6: open a() start closable_66e93e85048c2: __construct a() end b() start closable_66e93e85048c7: __construct b() catch b() finally closable_66e93e85048c7: close closable_66e93e85048c7: open a() start closable_66e93e85048d3: __construct a() end b() start closable_66e93e85048d8: __construct b() catch b() finally closable_66e93e85048d8: close closable_66e93e85048d8: open
Output for 8.2.14
closable_66e93e8504cb9: __construct closable_66e93e8504cd9: __construct closable_66e93e8504cdd: __construct a() start closable_66e93e8504ce1: __construct a() end b() start closable_66e93e8504ce6: __construct b() catch b() finally closable_66e93e8504ce6: close closable_66e93e8504ce6: open a() start closable_66e93e8504d23: __construct a() end b() start closable_66e93e8504d2a: __construct b() catch b() finally closable_66e93e8504d2a: close closable_66e93e8504d2a: open a() start closable_66e93e8504d39: __construct a() end b() start closable_66e93e8504d3f: __construct b() catch b() finally closable_66e93e8504d3f: close closable_66e93e8504d3f: open a() start closable_66e93e8504d4f: __construct a() end b() start closable_66e93e8504d55: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d61: __construct a() end b() start closable_66e93e8504d66: __construct b() catch b() finally closable_66e93e8504d66: close closable_66e93e8504d66: open a() start closable_66e93e8504d77: __construct a() end b() start closable_66e93e8504d7e: __construct b() catch b() finally closable_66e93e8504d7e: close closable_66e93e8504d7e: open a() start closable_66e93e8504d8b: __construct a() end b() start closable_66e93e8504d90: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d97: __construct a() end b() start closable_66e93e8504d9c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504da2: __construct a() end b() start closable_66e93e8504da7: __construct b() catch b() finally closable_66e93e8504da7: close closable_66e93e8504da7: open a() start closable_66e93e8504db3: __construct a() end b() start closable_66e93e8504db8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504dbe: __construct a() end b() start closable_66e93e8504dc3: __construct b() catch b() finally closable_66e93e8504dc3: close closable_66e93e8504dc3: open
Output for 8.2.13
closable_66e93e85070a8: __construct closable_66e93e85070e1: __construct closable_66e93e85070ea: __construct a() start closable_66e93e85070f4: __construct a() end b() start closable_66e93e8507100: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507126: __construct a() end b() start closable_66e93e8507132: __construct b() catch b() finally closable_66e93e8507132: close closable_66e93e8507132: open a() start closable_66e93e850715a: __construct a() end b() start closable_66e93e8507166: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507178: __construct a() end b() start closable_66e93e8507183: __construct b() catch b() finally closable_66e93e8507183: close closable_66e93e8507183: open a() start closable_66e93e85071a1: __construct a() end b() start closable_66e93e85071ab: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85071bb: __construct a() end b() start closable_66e93e85071c7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85071d7: __construct a() end b() start closable_66e93e85071e2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85071f1: __construct a() end b() start closable_66e93e85071fc: __construct b() catch b() finally closable_66e93e85071fc: close closable_66e93e85071fc: open a() start closable_66e93e850721a: __construct a() end b() start closable_66e93e8507225: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507235: __construct a() end b() start closable_66e93e8507240: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850724f: __construct a() end b() start closable_66e93e850725b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.12
closable_66e93e8504216: __construct closable_66e93e8504235: __construct closable_66e93e8504238: __construct a() start closable_66e93e850423e: __construct a() end b() start closable_66e93e8504242: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504257: __construct a() end b() start closable_66e93e850425c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504266: __construct a() end b() start closable_66e93e850426f: __construct b() catch b() finally closable_66e93e850426f: close closable_66e93e850426f: open a() start closable_66e93e8504286: __construct a() end b() start closable_66e93e850428b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504293: __construct a() end b() start closable_66e93e8504298: __construct b() catch b() finally closable_66e93e8504298: close closable_66e93e8504298: open a() start closable_66e93e85042a4: __construct a() end b() start closable_66e93e85042a9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042b0: __construct a() end b() start closable_66e93e85042b7: __construct b() catch b() finally closable_66e93e85042b7: close closable_66e93e85042b7: open a() start closable_66e93e85042c7: __construct a() end b() start closable_66e93e85042cd: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042d5: __construct a() end b() start closable_66e93e85042d9: __construct b() catch b() finally closable_66e93e85042d9: close closable_66e93e85042d9: open a() start closable_66e93e85042e5: __construct a() end b() start closable_66e93e85042e9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042f0: __construct a() end b() start closable_66e93e85042f4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.11
closable_66e93e8504b6c: __construct closable_66e93e8504b8d: __construct closable_66e93e8504b91: __construct a() start closable_66e93e8504b97: __construct a() end b() start closable_66e93e8504b9c: __construct b() catch b() finally closable_66e93e8504b9c: close closable_66e93e8504b9c: open a() start closable_66e93e8504bc2: __construct a() end b() start closable_66e93e8504bc9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bd7: __construct a() end b() start closable_66e93e8504bde: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504be7: __construct a() end b() start closable_66e93e8504bec: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bf6: __construct a() end b() start closable_66e93e8504bfc: __construct b() catch b() finally closable_66e93e8504bfc: close closable_66e93e8504bfc: open a() start closable_66e93e8504c0b: __construct a() end b() start closable_66e93e8504c11: __construct b() catch b() finally closable_66e93e8504c11: close closable_66e93e8504c11: open a() start closable_66e93e8504c21: __construct a() end b() start closable_66e93e8504c28: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504c31: __construct a() end b() start closable_66e93e8504c37: __construct b() catch b() finally closable_66e93e8504c37: close closable_66e93e8504c37: open a() start closable_66e93e8504c47: __construct a() end b() start closable_66e93e8504c4e: __construct b() catch b() finally closable_66e93e8504c4e: close closable_66e93e8504c4e: open a() start closable_66e93e8504c5c: __construct a() end b() start closable_66e93e8504c62: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504c6b: __construct a() end b() start closable_66e93e8504c71: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.10
closable_66e93e85056a0: __construct closable_66e93e85056c2: __construct closable_66e93e85056c7: __construct a() start closable_66e93e85056cc: __construct a() end b() start closable_66e93e85056d1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85056ea: __construct a() end b() start closable_66e93e85056f1: __construct b() catch b() finally closable_66e93e85056f1: close closable_66e93e85056f1: open a() start closable_66e93e850570f: __construct a() end b() start closable_66e93e8505716: __construct b() catch b() finally closable_66e93e8505716: close closable_66e93e8505716: open a() start closable_66e93e8505725: __construct a() end b() start closable_66e93e850572b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505735: __construct a() end b() start closable_66e93e850573b: __construct b() catch b() finally closable_66e93e850573b: close closable_66e93e850573b: open a() start closable_66e93e850574c: __construct a() end b() start closable_66e93e8505772: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850577a: __construct a() end b() start closable_66e93e8505787: __construct b() catch b() finally closable_66e93e8505787: close closable_66e93e8505787: open a() start closable_66e93e8505797: __construct a() end b() start closable_66e93e850579d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85057a5: __construct a() end b() start closable_66e93e85057ab: __construct b() catch b() finally closable_66e93e85057ab: close closable_66e93e85057ab: open a() start closable_66e93e85057ba: __construct a() end b() start closable_66e93e85057c0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85057c9: __construct a() end b() start closable_66e93e85057ce: __construct b() catch b() finally closable_66e93e85057ce: close closable_66e93e85057ce: open
Output for 8.2.9
closable_66e93e8504a2e: __construct closable_66e93e8504a4d: __construct closable_66e93e8504a51: __construct a() start closable_66e93e8504a56: __construct a() end b() start closable_66e93e8504a5b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a70: __construct a() end b() start closable_66e93e8504a76: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a7d: __construct a() end b() start closable_66e93e8504a82: __construct b() catch b() finally closable_66e93e8504a82: close closable_66e93e8504a82: open a() start closable_66e93e8504a96: __construct a() end b() start closable_66e93e8504a9b: __construct b() catch b() finally closable_66e93e8504a9b: close closable_66e93e8504a9b: open a() start closable_66e93e8504aa8: __construct a() end b() start closable_66e93e8504aad: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504ab4: __construct a() end b() start closable_66e93e8504ab9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504ac0: __construct a() end b() start closable_66e93e8504ac5: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504acc: __construct a() end b() start closable_66e93e8504ad0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504ad7: __construct a() end b() start closable_66e93e8504adc: __construct b() catch b() finally closable_66e93e8504adc: close closable_66e93e8504adc: open a() start closable_66e93e8504ae9: __construct a() end b() start closable_66e93e8504aee: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504af5: __construct a() end b() start closable_66e93e8504afa: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.8
closable_66e93e850520c: __construct closable_66e93e8505235: __construct closable_66e93e8505239: __construct a() start closable_66e93e850523e: __construct a() end b() start closable_66e93e8505243: __construct b() catch b() finally closable_66e93e8505243: close closable_66e93e8505243: open a() start closable_66e93e8505266: __construct a() end b() start closable_66e93e850526d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505278: __construct a() end b() start closable_66e93e850527e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505287: __construct a() end b() start closable_66e93e850528d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505296: __construct a() end b() start closable_66e93e850529b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052a4: __construct a() end b() start closable_66e93e85052aa: __construct b() catch b() finally closable_66e93e85052aa: close closable_66e93e85052aa: open a() start closable_66e93e85052ba: __construct a() end b() start closable_66e93e85052c0: __construct b() catch b() finally closable_66e93e85052c0: close closable_66e93e85052c0: open a() start closable_66e93e85052ce: __construct a() end b() start closable_66e93e85052d4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052dd: __construct a() end b() start closable_66e93e85052e3: __construct b() catch b() finally closable_66e93e85052e3: close closable_66e93e85052e3: open a() start closable_66e93e85052f3: __construct a() end b() start closable_66e93e85052f9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505302: __construct a() end b() start closable_66e93e8505309: __construct b() catch b() finally closable_66e93e8505309: close closable_66e93e8505309: open
Output for 8.2.7
closable_66e93e85043f8: __construct closable_66e93e8504415: __construct closable_66e93e8504418: __construct a() start closable_66e93e850441d: __construct a() end b() start closable_66e93e8504422: __construct b() catch b() finally closable_66e93e8504422: close closable_66e93e8504422: open a() start closable_66e93e850443e: __construct a() end b() start closable_66e93e8504444: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850444e: __construct a() end b() start closable_66e93e8504453: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504459: __construct a() end b() start closable_66e93e850445e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504464: __construct a() end b() start closable_66e93e8504469: __construct b() catch b() finally closable_66e93e8504469: close closable_66e93e8504469: open a() start closable_66e93e8504477: __construct a() end b() start closable_66e93e850447b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504483: __construct a() end b() start closable_66e93e8504487: __construct b() catch b() finally closable_66e93e8504487: close closable_66e93e8504487: open a() start closable_66e93e8504493: __construct a() end b() start closable_66e93e8504498: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850449e: __construct a() end b() start closable_66e93e85044a3: __construct b() catch b() finally closable_66e93e85044a3: close closable_66e93e85044a3: open a() start closable_66e93e85044af: __construct a() end b() start closable_66e93e85044b3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85044ba: __construct a() end b() start closable_66e93e85044bf: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.6
closable_66e93e8508199: __construct closable_66e93e85081c0: __construct closable_66e93e85081c5: __construct a() start closable_66e93e85081ca: __construct a() end b() start closable_66e93e85081cf: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85081e6: __construct a() end b() start closable_66e93e85081ed: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85081f6: __construct a() end b() start closable_66e93e85081fd: __construct b() catch b() finally closable_66e93e85081fd: close closable_66e93e85081fd: open a() start closable_66e93e8508216: __construct a() end b() start closable_66e93e850821c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8508225: __construct a() end b() start closable_66e93e850822b: __construct b() catch b() finally closable_66e93e850822b: close closable_66e93e850822b: open a() start closable_66e93e850823b: __construct a() end b() start closable_66e93e8508240: __construct b() catch b() finally closable_66e93e8508240: close closable_66e93e8508240: open a() start closable_66e93e850824f: __construct a() end b() start closable_66e93e8508255: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850825e: __construct a() end b() start closable_66e93e8508264: __construct b() catch b() finally closable_66e93e8508264: close closable_66e93e8508264: open a() start closable_66e93e8508273: __construct a() end b() start closable_66e93e8508279: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8508283: __construct a() end b() start closable_66e93e8508289: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8508292: __construct a() end b() start closable_66e93e8508298: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.5
closable_66e93e8507386: __construct closable_66e93e85073ac: __construct closable_66e93e85073b0: __construct a() start closable_66e93e85073b5: __construct a() end b() start closable_66e93e85073b9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85073ce: __construct a() end b() start closable_66e93e85073d3: __construct b() catch b() finally closable_66e93e85073d3: close closable_66e93e85073d3: open a() start closable_66e93e85073eb: __construct a() end b() start closable_66e93e85073f0: __construct b() catch b() finally closable_66e93e85073f0: close closable_66e93e85073f0: open a() start closable_66e93e85073fd: __construct a() end b() start closable_66e93e8507402: __construct b() catch b() finally closable_66e93e8507402: close closable_66e93e8507402: open a() start closable_66e93e850740f: __construct a() end b() start closable_66e93e8507414: __construct b() catch b() finally closable_66e93e8507414: close closable_66e93e8507414: open a() start closable_66e93e8507420: __construct a() end b() start closable_66e93e8507425: __construct b() catch b() finally closable_66e93e8507425: close closable_66e93e8507425: open a() start closable_66e93e8507439: __construct a() end b() start closable_66e93e850743e: __construct b() catch b() finally closable_66e93e850743e: close closable_66e93e850743e: open a() start closable_66e93e850744a: __construct a() end b() start closable_66e93e850744f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507457: __construct a() end b() start closable_66e93e850745c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507463: __construct a() end b() start closable_66e93e8507468: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850746f: __construct a() end b() start closable_66e93e8507474: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.4
closable_66e93e8504b06: __construct closable_66e93e8504b27: __construct closable_66e93e8504b2b: __construct a() start closable_66e93e8504b30: __construct a() end b() start closable_66e93e8504b36: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504b4c: __construct a() end b() start closable_66e93e8504b52: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504b5d: __construct a() end b() start closable_66e93e8504b63: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504b6c: __construct a() end b() start closable_66e93e8504b73: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504b7b: __construct a() end b() start closable_66e93e8504b81: __construct b() catch b() finally closable_66e93e8504b81: close closable_66e93e8504b81: open a() start closable_66e93e8504b97: __construct a() end b() start closable_66e93e8504b9d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504ba5: __construct a() end b() start closable_66e93e8504bab: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bb3: __construct a() end b() start closable_66e93e8504bb9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bc1: __construct a() end b() start closable_66e93e8504bc6: __construct b() catch b() finally closable_66e93e8504bc6: close closable_66e93e8504bc6: open a() start closable_66e93e8504bd6: __construct a() end b() start closable_66e93e8504bdd: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504be5: __construct a() end b() start closable_66e93e8504beb: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.3
closable_66e93e8504327: __construct closable_66e93e8504344: __construct closable_66e93e8504349: __construct a() start closable_66e93e850434e: __construct a() end b() start closable_66e93e8504353: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504367: __construct a() end b() start closable_66e93e850436b: __construct b() catch b() finally closable_66e93e850436b: close closable_66e93e850436b: open a() start closable_66e93e8504381: __construct a() end b() start closable_66e93e8504386: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850438d: __construct a() end b() start closable_66e93e8504392: __construct b() catch b() finally closable_66e93e8504392: close closable_66e93e8504392: open a() start closable_66e93e850439f: __construct a() end b() start closable_66e93e85043a4: __construct b() catch b() finally closable_66e93e85043a4: close closable_66e93e85043a4: open a() start closable_66e93e85043b0: __construct a() end b() start closable_66e93e85043b5: __construct b() catch b() finally closable_66e93e85043b5: close closable_66e93e85043b5: open a() start closable_66e93e85043c1: __construct a() end b() start closable_66e93e85043c6: __construct b() catch b() finally closable_66e93e85043c6: close closable_66e93e85043c6: open a() start closable_66e93e85043d3: __construct a() end b() start closable_66e93e85043d7: __construct b() catch b() finally closable_66e93e85043d7: close closable_66e93e85043d7: open a() start closable_66e93e85043e4: __construct a() end b() start closable_66e93e85043e9: __construct b() catch b() finally closable_66e93e85043e9: close closable_66e93e85043e9: open a() start closable_66e93e85043f5: __construct a() end b() start closable_66e93e85043fa: __construct b() catch b() finally closable_66e93e85043fa: close closable_66e93e85043fa: open a() start closable_66e93e8504406: __construct a() end b() start closable_66e93e850440b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.2
closable_66e93e850496c: __construct closable_66e93e850498b: __construct closable_66e93e8504990: __construct a() start closable_66e93e8504995: __construct a() end b() start closable_66e93e850499a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049b2: __construct a() end b() start closable_66e93e85049b8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049c1: __construct a() end b() start closable_66e93e85049c7: __construct b() catch b() finally closable_66e93e85049c7: close closable_66e93e85049c7: open a() start closable_66e93e85049e0: __construct a() end b() start closable_66e93e85049e7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049ef: __construct a() end b() start closable_66e93e85049f3: __construct b() catch b() finally closable_66e93e85049f3: close closable_66e93e85049f3: open a() start closable_66e93e85049ff: __construct a() end b() start closable_66e93e8504a04: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a0b: __construct a() end b() start closable_66e93e8504a0f: __construct b() catch b() finally closable_66e93e8504a0f: close closable_66e93e8504a0f: open a() start closable_66e93e8504a1c: __construct a() end b() start closable_66e93e8504a23: __construct b() catch b() finally closable_66e93e8504a23: close closable_66e93e8504a23: open a() start closable_66e93e8504a33: __construct a() end b() start closable_66e93e8504a3a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a42: __construct a() end b() start closable_66e93e8504a47: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a4d: __construct a() end b() start closable_66e93e8504a52: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.2.1
closable_66e93e8504910: __construct closable_66e93e850492c: __construct closable_66e93e8504930: __construct a() start closable_66e93e8504939: __construct a() end b() start closable_66e93e850493d: __construct b() catch b() finally closable_66e93e850493d: close closable_66e93e850493d: open a() start closable_66e93e8504964: __construct a() end b() start closable_66e93e850496c: __construct b() catch b() finally closable_66e93e850496c: close closable_66e93e850496c: open a() start closable_66e93e850497a: __construct a() end b() start closable_66e93e850497f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504988: __construct a() end b() start closable_66e93e850498d: __construct b() catch b() finally closable_66e93e850498d: close closable_66e93e850498d: open a() start closable_66e93e850499a: __construct a() end b() start closable_66e93e850499f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049a9: __construct a() end b() start closable_66e93e85049b0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049ba: __construct a() end b() start closable_66e93e85049c0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049c6: __construct a() end b() start closable_66e93e85049cb: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049d2: __construct a() end b() start closable_66e93e85049d6: __construct b() catch b() finally closable_66e93e85049d6: close closable_66e93e85049d6: open a() start closable_66e93e85049e3: __construct a() end b() start closable_66e93e85049e8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85049ee: __construct a() end b() start closable_66e93e85049f4: __construct b() catch b() finally closable_66e93e85049f4: close closable_66e93e85049f4: open
Output for 8.2.0
closable_66e93e8505aef: __construct closable_66e93e8505b12: __construct closable_66e93e8505b17: __construct a() start closable_66e93e8505b22: __construct a() end b() start closable_66e93e8505b26: __construct b() catch b() finally closable_66e93e8505b26: close closable_66e93e8505b26: open a() start closable_66e93e8505b4f: __construct a() end b() start closable_66e93e8505b54: __construct b() catch b() finally closable_66e93e8505b54: close closable_66e93e8505b54: open a() start closable_66e93e8505b61: __construct a() end b() start closable_66e93e8505b65: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505b6f: __construct a() end b() start closable_66e93e8505b74: __construct b() catch b() finally closable_66e93e8505b74: close closable_66e93e8505b74: open a() start closable_66e93e8505b81: __construct a() end b() start closable_66e93e8505b86: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505b8d: __construct a() end b() start closable_66e93e8505b92: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505b9a: __construct a() end b() start closable_66e93e8505b9f: __construct b() catch b() finally closable_66e93e8505b9f: close closable_66e93e8505b9f: open a() start closable_66e93e8505bab: __construct a() end b() start closable_66e93e8505bb0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bb7: __construct a() end b() start closable_66e93e8505bbc: __construct b() catch b() finally closable_66e93e8505bbc: close closable_66e93e8505bbc: open a() start closable_66e93e8505bc8: __construct a() end b() start closable_66e93e8505bcd: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505bd4: __construct a() end b() start closable_66e93e8505bd9: __construct b() catch b() finally closable_66e93e8505bd9: close closable_66e93e8505bd9: open
Output for 8.1.29
closable_66e93e8503a01: __construct closable_66e93e8503a23: __construct closable_66e93e8503a27: __construct a() start closable_66e93e8503a2c: __construct a() end b() start closable_66e93e8503a31: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503a4d: __construct a() end b() start closable_66e93e8503a53: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503a5b: __construct a() end b() start closable_66e93e8503a60: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503a68: __construct a() end b() start closable_66e93e8503a6e: __construct b() catch b() finally closable_66e93e8503a6e: close closable_66e93e8503a6e: open a() start closable_66e93e8503a86: __construct a() end b() start closable_66e93e8503a8d: __construct b() catch b() finally closable_66e93e8503a8d: close closable_66e93e8503a8d: open a() start closable_66e93e8503a9d: __construct a() end b() start closable_66e93e8503aa3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503aae: __construct a() end b() start closable_66e93e8503ab4: __construct b() catch b() finally closable_66e93e8503ab4: close closable_66e93e8503ab4: open a() start closable_66e93e8503ac3: __construct a() end b() start closable_66e93e8503ac9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503ad2: __construct a() end b() start closable_66e93e8503ad8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503ae2: __construct a() end b() start closable_66e93e8503ae8: __construct b() catch b() finally closable_66e93e8503ae8: close closable_66e93e8503ae8: open a() start closable_66e93e8503af8: __construct a() end b() start closable_66e93e8503aff: __construct b() catch b() finally closable_66e93e8503aff: close closable_66e93e8503aff: open
Output for 8.1.28
closable_66e93e8502ed8: __construct closable_66e93e8502eef: __construct closable_66e93e8502ef3: __construct a() start closable_66e93e8502f32: __construct a() end b() start closable_66e93e8502f3a: __construct b() catch b() finally closable_66e93e8502f3a: close closable_66e93e8502f3a: open a() start closable_66e93e8502f5e: __construct a() end b() start closable_66e93e8502f64: __construct b() catch b() finally closable_66e93e8502f64: close closable_66e93e8502f64: open a() start closable_66e93e8502f8d: __construct a() end b() start closable_66e93e8502f95: __construct b() catch b() finally closable_66e93e8502f95: close closable_66e93e8502f95: open a() start closable_66e93e8502fa6: __construct a() end b() start closable_66e93e8502fad: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8502fbe: __construct a() end b() start closable_66e93e8502fc4: __construct b() catch b() finally closable_66e93e8502fc4: close closable_66e93e8502fc4: open a() start closable_66e93e8502fd4: __construct a() end b() start closable_66e93e8502fda: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8502fe2: __construct a() end b() start closable_66e93e8502fe7: __construct b() catch b() finally closable_66e93e8502fe7: close closable_66e93e8502fe7: open a() start closable_66e93e8502ff3: __construct a() end b() start closable_66e93e8502ff7: __construct b() catch b() finally closable_66e93e8502ff7: close closable_66e93e8502ff7: open a() start closable_66e93e8503004: __construct a() end b() start closable_66e93e8503009: __construct b() catch b() finally closable_66e93e8503009: close closable_66e93e8503009: open a() start closable_66e93e8503016: __construct a() end b() start closable_66e93e850301a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503021: __construct a() end b() start closable_66e93e8503026: __construct b() catch b() finally closable_66e93e8503026: close closable_66e93e8503026: open
Output for 8.1.27
closable_66e93e8504861: __construct closable_66e93e850487e: __construct closable_66e93e8504882: __construct a() start closable_66e93e8504886: __construct a() end b() start closable_66e93e850488a: __construct b() catch b() finally closable_66e93e850488a: close closable_66e93e850488a: open a() start closable_66e93e85048a5: __construct a() end b() start closable_66e93e85048ab: __construct b() catch b() finally closable_66e93e85048ab: close closable_66e93e85048ab: open a() start closable_66e93e85048be: __construct a() end b() start closable_66e93e85048c4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85048d2: __construct a() end b() start closable_66e93e85048d7: __construct b() catch b() finally closable_66e93e85048d7: close closable_66e93e85048d7: open a() start closable_66e93e85048e4: __construct a() end b() start closable_66e93e85048e9: __construct b() catch b() finally closable_66e93e85048e9: close closable_66e93e85048e9: open a() start closable_66e93e85048f6: __construct a() end b() start closable_66e93e85048fd: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504907: __construct a() end b() start closable_66e93e850490f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504918: __construct a() end b() start closable_66e93e850491f: __construct b() catch b() finally closable_66e93e850491f: close closable_66e93e850491f: open a() start closable_66e93e8504937: __construct a() end b() start closable_66e93e850493b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504943: __construct a() end b() start closable_66e93e8504948: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850494e: __construct a() end b() start closable_66e93e8504955: __construct b() catch b() finally closable_66e93e8504955: close closable_66e93e8504955: open
Output for 8.1.26
closable_66e93e85059dc: __construct closable_66e93e8505a00: __construct closable_66e93e8505a04: __construct a() start closable_66e93e8505a0a: __construct a() end b() start closable_66e93e8505a10: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505a28: __construct a() end b() start closable_66e93e8505a2d: __construct b() catch b() finally closable_66e93e8505a2d: close closable_66e93e8505a2d: open a() start closable_66e93e8505a43: __construct a() end b() start closable_66e93e8505a48: __construct b() catch b() finally closable_66e93e8505a48: close closable_66e93e8505a48: open a() start closable_66e93e8505a55: __construct a() end b() start closable_66e93e8505a5a: __construct b() catch b() finally closable_66e93e8505a5a: close closable_66e93e8505a5a: open a() start closable_66e93e8505a68: __construct a() end b() start closable_66e93e8505a6c: __construct b() catch b() finally closable_66e93e8505a6c: close closable_66e93e8505a6c: open a() start closable_66e93e8505a78: __construct a() end b() start closable_66e93e8505a7d: __construct b() catch b() finally closable_66e93e8505a7d: close closable_66e93e8505a7d: open a() start closable_66e93e8505a8a: __construct a() end b() start closable_66e93e8505a91: __construct b() catch b() finally closable_66e93e8505a91: close closable_66e93e8505a91: open a() start closable_66e93e8505a9e: __construct a() end b() start closable_66e93e8505aa3: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505aab: __construct a() end b() start closable_66e93e8505ab0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505ab7: __construct a() end b() start closable_66e93e8505abc: __construct b() catch b() finally closable_66e93e8505abc: close closable_66e93e8505abc: open a() start closable_66e93e8505ac8: __construct a() end b() start closable_66e93e8505acc: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.25
closable_66e93e8504909: __construct closable_66e93e8504927: __construct closable_66e93e850492c: __construct a() start closable_66e93e8504931: __construct a() end b() start closable_66e93e8504936: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504946: __construct a() end b() start closable_66e93e850494b: __construct b() catch b() finally closable_66e93e850494b: close closable_66e93e850494b: open a() start closable_66e93e850495f: __construct a() end b() start closable_66e93e8504964: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850496c: __construct a() end b() start closable_66e93e8504971: __construct b() catch b() finally closable_66e93e8504971: close closable_66e93e8504971: open a() start closable_66e93e850497e: __construct a() end b() start closable_66e93e8504983: __construct b() catch b() finally closable_66e93e8504983: close closable_66e93e8504983: open a() start closable_66e93e850498f: __construct a() end b() start closable_66e93e8504994: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850499c: __construct a() end b() start closable_66e93e85049a0: __construct b() catch b() finally closable_66e93e85049a0: close closable_66e93e85049a0: open a() start closable_66e93e85049ae: __construct a() end b() start closable_66e93e85049b2: __construct b() catch b() finally closable_66e93e85049b2: close closable_66e93e85049b2: open a() start closable_66e93e85049bf: __construct a() end b() start closable_66e93e85049c4: __construct b() catch b() finally closable_66e93e85049c4: close closable_66e93e85049c4: open a() start closable_66e93e85049f7: __construct a() end b() start closable_66e93e85049fc: __construct b() catch b() finally closable_66e93e85049fc: close closable_66e93e85049fc: open a() start closable_66e93e8504a09: __construct a() end b() start closable_66e93e8504a0d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.24
closable_66e93e8503c86: __construct closable_66e93e8503ca3: __construct closable_66e93e8503ca7: __construct a() start closable_66e93e8503cab: __construct a() end b() start closable_66e93e8503caf: __construct b() catch b() finally closable_66e93e8503caf: close closable_66e93e8503caf: open a() start closable_66e93e8503ccd: __construct a() end b() start closable_66e93e8503cd3: __construct b() catch b() finally closable_66e93e8503cd3: close closable_66e93e8503cd3: open a() start closable_66e93e8503ce5: __construct a() end b() start closable_66e93e8503cec: __construct b() catch b() finally closable_66e93e8503cec: close closable_66e93e8503cec: open a() start closable_66e93e8503cf9: __construct a() end b() start closable_66e93e8503cfe: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d08: __construct a() end b() start closable_66e93e8503d0d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d14: __construct a() end b() start closable_66e93e8503d18: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d21: __construct a() end b() start closable_66e93e8503d27: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d32: __construct a() end b() start closable_66e93e8503d39: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d41: __construct a() end b() start closable_66e93e8503d45: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d4d: __construct a() end b() start closable_66e93e8503d52: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d59: __construct a() end b() start closable_66e93e8503d5e: __construct b() catch b() finally closable_66e93e8503d5e: close closable_66e93e8503d5e: open
Output for 8.1.23
closable_66e93e8503852: __construct closable_66e93e8503871: __construct closable_66e93e8503875: __construct a() start closable_66e93e850387a: __construct a() end b() start closable_66e93e850387e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503890: __construct a() end b() start closable_66e93e8503895: __construct b() catch b() finally closable_66e93e8503895: close closable_66e93e8503895: open a() start closable_66e93e85038a9: __construct a() end b() start closable_66e93e85038ae: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85038b6: __construct a() end b() start closable_66e93e85038ba: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85038c2: __construct a() end b() start closable_66e93e85038c7: __construct b() catch b() finally closable_66e93e85038c7: close closable_66e93e85038c7: open a() start closable_66e93e85038d4: __construct a() end b() start closable_66e93e85038d9: __construct b() catch b() finally closable_66e93e85038d9: close closable_66e93e85038d9: open a() start closable_66e93e85038e5: __construct a() end b() start closable_66e93e85038ea: __construct b() catch b() finally closable_66e93e85038ea: close closable_66e93e85038ea: open a() start closable_66e93e85038f6: __construct a() end b() start closable_66e93e85038fb: __construct b() catch b() finally closable_66e93e85038fb: close closable_66e93e85038fb: open a() start closable_66e93e8503908: __construct a() end b() start closable_66e93e850390c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503914: __construct a() end b() start closable_66e93e8503919: __construct b() catch b() finally closable_66e93e8503919: close closable_66e93e8503919: open a() start closable_66e93e8503925: __construct a() end b() start closable_66e93e850392a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.22
closable_66e93e85046df: __construct closable_66e93e85046fb: __construct closable_66e93e85046fe: __construct a() start closable_66e93e8504707: __construct a() end b() start closable_66e93e850470b: __construct b() catch b() finally closable_66e93e850470b: close closable_66e93e850470b: open a() start closable_66e93e8504721: __construct a() end b() start closable_66e93e8504727: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504731: __construct a() end b() start closable_66e93e8504736: __construct b() catch b() finally closable_66e93e8504736: close closable_66e93e8504736: open a() start closable_66e93e8504742: __construct a() end b() start closable_66e93e8504747: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850474e: __construct a() end b() start closable_66e93e8504753: __construct b() catch b() finally closable_66e93e8504753: close closable_66e93e8504753: open a() start closable_66e93e850475f: __construct a() end b() start closable_66e93e8504764: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850476a: __construct a() end b() start closable_66e93e850476f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504775: __construct a() end b() start closable_66e93e8504779: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504780: __construct a() end b() start closable_66e93e8504785: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850478b: __construct a() end b() start closable_66e93e8504791: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504797: __construct a() end b() start closable_66e93e850479c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.21
closable_66e93e85040d8: __construct closable_66e93e85040f6: __construct closable_66e93e85040fd: __construct a() start closable_66e93e8504102: __construct a() end b() start closable_66e93e8504106: __construct b() catch b() finally closable_66e93e8504106: close closable_66e93e8504106: open a() start closable_66e93e8504125: __construct a() end b() start closable_66e93e850412d: __construct b() catch b() finally closable_66e93e850412d: close closable_66e93e850412d: open a() start closable_66e93e850413e: __construct a() end b() start closable_66e93e8504143: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850414d: __construct a() end b() start closable_66e93e8504152: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504159: __construct a() end b() start closable_66e93e850415d: __construct b() catch b() finally closable_66e93e850415d: close closable_66e93e850415d: open a() start closable_66e93e850416a: __construct a() end b() start closable_66e93e850416f: __construct b() catch b() finally closable_66e93e850416f: close closable_66e93e850416f: open a() start closable_66e93e8504182: __construct a() end b() start closable_66e93e850418a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504192: __construct a() end b() start closable_66e93e8504198: __construct b() catch b() finally closable_66e93e8504198: close closable_66e93e8504198: open a() start closable_66e93e85041a4: __construct a() end b() start closable_66e93e85041a9: __construct b() catch b() finally closable_66e93e85041a9: close closable_66e93e85041a9: open a() start closable_66e93e85041b5: __construct a() end b() start closable_66e93e85041ba: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85041c1: __construct a() end b() start closable_66e93e85041c5: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.20
closable_66e93e8503e5f: __construct closable_66e93e8503e7d: __construct closable_66e93e8503e86: __construct a() start closable_66e93e8503e8b: __construct a() end b() start closable_66e93e8503e8f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e9f: __construct a() end b() start closable_66e93e8503ea5: __construct b() catch b() finally closable_66e93e8503ea5: close closable_66e93e8503ea5: open a() start closable_66e93e8503ebd: __construct a() end b() start closable_66e93e8503ec2: __construct b() catch b() finally closable_66e93e8503ec2: close closable_66e93e8503ec2: open a() start closable_66e93e8503ecf: __construct a() end b() start closable_66e93e8503ed4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503edb: __construct a() end b() start closable_66e93e8503ee0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503ee8: __construct a() end b() start closable_66e93e8503eec: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503ef3: __construct a() end b() start closable_66e93e8503ef9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503f00: __construct a() end b() start closable_66e93e8503f04: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503f0b: __construct a() end b() start closable_66e93e8503f10: __construct b() catch b() finally closable_66e93e8503f10: close closable_66e93e8503f10: open a() start closable_66e93e8503f1d: __construct a() end b() start closable_66e93e8503f22: __construct b() catch b() finally closable_66e93e8503f22: close closable_66e93e8503f22: open a() start closable_66e93e8503f2e: __construct a() end b() start closable_66e93e8503f33: __construct b() catch b() finally closable_66e93e8503f33: close closable_66e93e8503f33: open
Output for 8.1.19
closable_66e93e8503d22: __construct closable_66e93e8503d3b: __construct closable_66e93e8503d44: __construct a() start closable_66e93e8503d49: __construct a() end b() start closable_66e93e8503d4e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d5e: __construct a() end b() start closable_66e93e8503d63: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d6b: __construct a() end b() start closable_66e93e8503d70: __construct b() catch b() finally closable_66e93e8503d70: close closable_66e93e8503d70: open a() start closable_66e93e8503d8a: __construct a() end b() start closable_66e93e8503d8f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503d96: __construct a() end b() start closable_66e93e8503d9b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503da2: __construct a() end b() start closable_66e93e8503da7: __construct b() catch b() finally closable_66e93e8503da7: close closable_66e93e8503da7: open a() start closable_66e93e8503db4: __construct a() end b() start closable_66e93e8503db9: __construct b() catch b() finally closable_66e93e8503db9: close closable_66e93e8503db9: open a() start closable_66e93e8503dc6: __construct a() end b() start closable_66e93e8503dcb: __construct b() catch b() finally closable_66e93e8503dcb: close closable_66e93e8503dcb: open a() start closable_66e93e8503dd7: __construct a() end b() start closable_66e93e8503ddc: __construct b() catch b() finally closable_66e93e8503ddc: close closable_66e93e8503ddc: open a() start closable_66e93e8503de8: __construct a() end b() start closable_66e93e8503ded: __construct b() catch b() finally closable_66e93e8503ded: close closable_66e93e8503ded: open a() start closable_66e93e8503df9: __construct a() end b() start closable_66e93e8503dfe: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.18
closable_66e93e850418f: __construct closable_66e93e85041b2: __construct closable_66e93e85041bc: __construct a() start closable_66e93e85041c1: __construct a() end b() start closable_66e93e85041c7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85041d9: __construct a() end b() start closable_66e93e85041df: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85041e9: __construct a() end b() start closable_66e93e85041ef: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85041f8: __construct a() end b() start closable_66e93e85041fe: __construct b() catch b() finally closable_66e93e85041fe: close closable_66e93e85041fe: open a() start closable_66e93e850421f: __construct a() end b() start closable_66e93e8504226: __construct b() catch b() finally closable_66e93e8504226: close closable_66e93e8504226: open a() start closable_66e93e8504235: __construct a() end b() start closable_66e93e850423b: __construct b() catch b() finally closable_66e93e850423b: close closable_66e93e850423b: open a() start closable_66e93e850424c: __construct a() end b() start closable_66e93e8504252: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850425c: __construct a() end b() start closable_66e93e8504262: __construct b() catch b() finally closable_66e93e8504262: close closable_66e93e8504262: open a() start closable_66e93e8504271: __construct a() end b() start closable_66e93e8504277: __construct b() catch b() finally closable_66e93e8504277: close closable_66e93e8504277: open a() start closable_66e93e8504287: __construct a() end b() start closable_66e93e850428d: __construct b() catch b() finally closable_66e93e850428d: close closable_66e93e850428d: open a() start closable_66e93e850429d: __construct a() end b() start closable_66e93e85042a4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.17
closable_66e93e8503b3b: __construct closable_66e93e8503b4f: __construct closable_66e93e8503b58: __construct a() start closable_66e93e8503b5c: __construct a() end b() start closable_66e93e8503b60: __construct b() catch b() finally closable_66e93e8503b60: close closable_66e93e8503b60: open a() start closable_66e93e8503b87: __construct a() end b() start closable_66e93e8503b8f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503b9b: __construct a() end b() start closable_66e93e8503ba1: __construct b() catch b() finally closable_66e93e8503ba1: close closable_66e93e8503ba1: open a() start closable_66e93e8503baf: __construct a() end b() start closable_66e93e8503bb4: __construct b() catch b() finally closable_66e93e8503bb4: close closable_66e93e8503bb4: open a() start closable_66e93e8503bc2: __construct a() end b() start closable_66e93e8503bc8: __construct b() catch b() finally closable_66e93e8503bc8: close closable_66e93e8503bc8: open a() start closable_66e93e8503bdb: __construct a() end b() start closable_66e93e8503be2: __construct b() catch b() finally closable_66e93e8503be2: close closable_66e93e8503be2: open a() start closable_66e93e8503bf0: __construct a() end b() start closable_66e93e8503bf5: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503bfd: __construct a() end b() start closable_66e93e8503c02: __construct b() catch b() finally closable_66e93e8503c02: close closable_66e93e8503c02: open a() start closable_66e93e8503c0e: __construct a() end b() start closable_66e93e8503c12: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c19: __construct a() end b() start closable_66e93e8503c1e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c27: __construct a() end b() start closable_66e93e8503c2e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.16
closable_66e93e85045a7: __construct closable_66e93e85045c0: __construct closable_66e93e85045c8: __construct a() start closable_66e93e85045cd: __construct a() end b() start closable_66e93e85045d2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85045e4: __construct a() end b() start closable_66e93e85045e9: __construct b() catch b() finally closable_66e93e85045e9: close closable_66e93e85045e9: open a() start closable_66e93e8504608: __construct a() end b() start closable_66e93e850460e: __construct b() catch b() finally closable_66e93e850460e: close closable_66e93e850460e: open a() start closable_66e93e850461d: __construct a() end b() start closable_66e93e8504622: __construct b() catch b() finally closable_66e93e8504622: close closable_66e93e8504622: open a() start closable_66e93e8504632: __construct a() end b() start closable_66e93e8504638: __construct b() catch b() finally closable_66e93e8504638: close closable_66e93e8504638: open a() start closable_66e93e8504645: __construct a() end b() start closable_66e93e850464a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504652: __construct a() end b() start closable_66e93e8504658: __construct b() catch b() finally closable_66e93e8504658: close closable_66e93e8504658: open a() start closable_66e93e8504666: __construct a() end b() start closable_66e93e850466c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504674: __construct a() end b() start closable_66e93e850467a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504683: __construct a() end b() start closable_66e93e8504688: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850468f: __construct a() end b() start closable_66e93e8504695: __construct b() catch b() finally closable_66e93e8504695: close closable_66e93e8504695: open
Output for 8.1.15
closable_66e93e8503d98: __construct closable_66e93e8503ded: __construct closable_66e93e8503df7: __construct a() start closable_66e93e8503dfc: __construct a() end b() start closable_66e93e8503e00: __construct b() catch b() finally closable_66e93e8503e00: close closable_66e93e8503e00: open a() start closable_66e93e8503e25: __construct a() end b() start closable_66e93e8503e2a: __construct b() catch b() finally closable_66e93e8503e2a: close closable_66e93e8503e2a: open a() start closable_66e93e8503e3a: __construct a() end b() start closable_66e93e8503e41: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e4d: __construct a() end b() start closable_66e93e8503e53: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e5c: __construct a() end b() start closable_66e93e8503e62: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e78: __construct a() end b() start closable_66e93e8503e7e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e87: __construct a() end b() start closable_66e93e8503e8d: __construct b() catch b() finally closable_66e93e8503e8d: close closable_66e93e8503e8d: open a() start closable_66e93e8503e9e: __construct a() end b() start closable_66e93e8503ea5: __construct b() catch b() finally closable_66e93e8503ea5: close closable_66e93e8503ea5: open a() start closable_66e93e8503eb7: __construct a() end b() start closable_66e93e8503ebe: __construct b() catch b() finally closable_66e93e8503ebe: close closable_66e93e8503ebe: open a() start closable_66e93e8503ecb: __construct a() end b() start closable_66e93e8503ed0: __construct b() catch b() finally closable_66e93e8503ed0: close closable_66e93e8503ed0: open a() start closable_66e93e8503edc: __construct a() end b() start closable_66e93e8503ee0: __construct b() catch b() finally closable_66e93e8503ee0: close closable_66e93e8503ee0: open
Output for 8.1.14
closable_66e93e85041e7: __construct closable_66e93e85041fa: __construct closable_66e93e8504202: __construct a() start closable_66e93e8504207: __construct a() end b() start closable_66e93e850420b: __construct b() catch b() finally closable_66e93e850420b: close closable_66e93e850420b: open a() start closable_66e93e8504228: __construct a() end b() start closable_66e93e850422d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504237: __construct a() end b() start closable_66e93e850423c: __construct b() catch b() finally closable_66e93e850423c: close closable_66e93e850423c: open a() start closable_66e93e850424b: __construct a() end b() start closable_66e93e850424f: __construct b() catch b() finally closable_66e93e850424f: close closable_66e93e850424f: open a() start closable_66e93e850425b: __construct a() end b() start closable_66e93e8504260: __construct b() catch b() finally closable_66e93e8504260: close closable_66e93e8504260: open a() start closable_66e93e850426b: __construct a() end b() start closable_66e93e850426f: __construct b() catch b() finally closable_66e93e850426f: close closable_66e93e850426f: open a() start closable_66e93e850427c: __construct a() end b() start closable_66e93e8504280: __construct b() catch b() finally closable_66e93e8504280: close closable_66e93e8504280: open a() start closable_66e93e850428c: __construct a() end b() start closable_66e93e8504291: __construct b() catch b() finally closable_66e93e8504291: close closable_66e93e8504291: open a() start closable_66e93e850429c: __construct a() end b() start closable_66e93e85042a1: __construct b() catch b() finally closable_66e93e85042a1: close closable_66e93e85042a1: open a() start closable_66e93e85042b0: __construct a() end b() start closable_66e93e85042b6: __construct b() catch b() finally closable_66e93e85042b6: close closable_66e93e85042b6: open a() start closable_66e93e85042c3: __construct a() end b() start closable_66e93e85042c8: __construct b() catch b() finally closable_66e93e85042c8: close closable_66e93e85042c8: open
Output for 8.1.13
closable_66e93e850422f: __construct closable_66e93e8504243: __construct closable_66e93e850424b: __construct a() start closable_66e93e8504250: __construct a() end b() start closable_66e93e8504254: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504264: __construct a() end b() start closable_66e93e8504269: __construct b() catch b() finally closable_66e93e8504269: close closable_66e93e8504269: open a() start closable_66e93e8504287: __construct a() end b() start closable_66e93e850428d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504297: __construct a() end b() start closable_66e93e850429c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042a4: __construct a() end b() start closable_66e93e85042a8: __construct b() catch b() finally closable_66e93e85042a8: close closable_66e93e85042a8: open a() start closable_66e93e85042b6: __construct a() end b() start closable_66e93e85042bb: __construct b() catch b() finally closable_66e93e85042bb: close closable_66e93e85042bb: open a() start closable_66e93e85042ca: __construct a() end b() start closable_66e93e85042d1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042da: __construct a() end b() start closable_66e93e85042e1: __construct b() catch b() finally closable_66e93e85042e1: close closable_66e93e85042e1: open a() start closable_66e93e85042ed: __construct a() end b() start closable_66e93e85042f2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042f9: __construct a() end b() start closable_66e93e85042ff: __construct b() catch b() finally closable_66e93e85042ff: close closable_66e93e85042ff: open a() start closable_66e93e850430c: __construct a() end b() start closable_66e93e8504310: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.12
closable_66e93e85046c7: __construct closable_66e93e85046dc: __construct closable_66e93e85046e4: __construct a() start closable_66e93e85046e9: __construct a() end b() start closable_66e93e85046ed: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85046fc: __construct a() end b() start closable_66e93e8504702: __construct b() catch b() finally closable_66e93e8504702: close closable_66e93e8504702: open a() start closable_66e93e8504721: __construct a() end b() start closable_66e93e8504727: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504730: __construct a() end b() start closable_66e93e8504736: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850473f: __construct a() end b() start closable_66e93e8504745: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850474d: __construct a() end b() start closable_66e93e8504753: __construct b() catch b() finally closable_66e93e8504753: close closable_66e93e8504753: open a() start closable_66e93e8504763: __construct a() end b() start closable_66e93e850476b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504774: __construct a() end b() start closable_66e93e850477a: __construct b() catch b() finally closable_66e93e850477a: close closable_66e93e850477a: open a() start closable_66e93e8504788: __construct a() end b() start closable_66e93e850478f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504798: __construct a() end b() start closable_66e93e850479e: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85047a8: __construct a() end b() start closable_66e93e85047af: __construct b() catch b() finally closable_66e93e85047af: close closable_66e93e85047af: open
Output for 8.1.11
closable_66e93e850416f: __construct closable_66e93e8504187: __construct closable_66e93e850418a: __construct a() start closable_66e93e850418e: __construct a() end b() start closable_66e93e8504193: __construct b() catch b() finally closable_66e93e8504193: close closable_66e93e8504193: open a() start closable_66e93e85041b3: __construct a() end b() start closable_66e93e85041ba: __construct b() catch b() finally closable_66e93e85041ba: close closable_66e93e85041ba: open a() start closable_66e93e85041cc: __construct a() end b() start closable_66e93e85041d2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85041db: __construct a() end b() start closable_66e93e85041e0: __construct b() catch b() finally closable_66e93e85041e0: close closable_66e93e85041e0: open a() start closable_66e93e85041ee: __construct a() end b() start closable_66e93e85041f3: __construct b() catch b() finally closable_66e93e85041f3: close closable_66e93e85041f3: open a() start closable_66e93e85041ff: __construct a() end b() start closable_66e93e8504206: __construct b() catch b() finally closable_66e93e8504206: close closable_66e93e8504206: open a() start closable_66e93e8504217: __construct a() end b() start closable_66e93e850421f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504227: __construct a() end b() start closable_66e93e850422c: __construct b() catch b() finally closable_66e93e850422c: close closable_66e93e850422c: open a() start closable_66e93e850428b: __construct a() end b() start closable_66e93e8504291: __construct b() catch b() finally closable_66e93e8504291: close closable_66e93e8504291: open a() start closable_66e93e85042a1: __construct a() end b() start closable_66e93e85042a7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85042b1: __construct a() end b() start closable_66e93e85042b7: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.10
closable_66e93e850469d: __construct closable_66e93e85046b6: __construct closable_66e93e85046bb: __construct a() start closable_66e93e85046c0: __construct a() end b() start closable_66e93e85046c5: __construct b() catch b() finally closable_66e93e85046c5: close closable_66e93e85046c5: open a() start closable_66e93e85046e4: __construct a() end b() start closable_66e93e85046e9: __construct b() catch b() finally closable_66e93e85046e9: close closable_66e93e85046e9: open a() start closable_66e93e85046f6: __construct a() end b() start closable_66e93e85046fb: __construct b() catch b() finally closable_66e93e85046fb: close closable_66e93e85046fb: open a() start closable_66e93e8504707: __construct a() end b() start closable_66e93e850470c: __construct b() catch b() finally closable_66e93e850470c: close closable_66e93e850470c: open a() start closable_66e93e8504719: __construct a() end b() start closable_66e93e850471e: __construct b() catch b() finally closable_66e93e850471e: close closable_66e93e850471e: open a() start closable_66e93e850472a: __construct a() end b() start closable_66e93e850472f: __construct b() catch b() finally closable_66e93e850472f: close closable_66e93e850472f: open a() start closable_66e93e850473c: __construct a() end b() start closable_66e93e8504741: __construct b() catch b() finally closable_66e93e8504741: close closable_66e93e8504741: open a() start closable_66e93e850474d: __construct a() end b() start closable_66e93e8504752: __construct b() catch b() finally closable_66e93e8504752: close closable_66e93e8504752: open a() start closable_66e93e850475e: __construct a() end b() start closable_66e93e8504763: __construct b() catch b() finally closable_66e93e8504763: close closable_66e93e8504763: open a() start closable_66e93e8504777: __construct a() end b() start closable_66e93e850477d: __construct b() catch b() finally closable_66e93e850477d: close closable_66e93e850477d: open a() start closable_66e93e8504789: __construct a() end b() start closable_66e93e850478e: __construct b() catch b() finally closable_66e93e850478e: close closable_66e93e850478e: open
Output for 8.1.9
closable_66e93e8504b1a: __construct closable_66e93e8504b35: __construct closable_66e93e8504b39: __construct a() start closable_66e93e8504b3e: __construct a() end b() start closable_66e93e8504b43: __construct b() catch b() finally closable_66e93e8504b43: close closable_66e93e8504b43: open a() start closable_66e93e8504b62: __construct a() end b() start closable_66e93e8504b67: __construct b() catch b() finally closable_66e93e8504b67: close closable_66e93e8504b67: open a() start closable_66e93e8504b74: __construct a() end b() start closable_66e93e8504b79: __construct b() catch b() finally closable_66e93e8504b79: close closable_66e93e8504b79: open a() start closable_66e93e8504b8a: __construct a() end b() start closable_66e93e8504b91: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504b9e: __construct a() end b() start closable_66e93e8504ba3: __construct b() catch b() finally closable_66e93e8504ba3: close closable_66e93e8504ba3: open a() start closable_66e93e8504bb3: __construct a() end b() start closable_66e93e8504bb8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bbf: __construct a() end b() start closable_66e93e8504bc4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bcc: __construct a() end b() start closable_66e93e8504bd1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504bd8: __construct a() end b() start closable_66e93e8504bdd: __construct b() catch b() finally closable_66e93e8504bdd: close closable_66e93e8504bdd: open a() start closable_66e93e8504beb: __construct a() end b() start closable_66e93e8504bf0: __construct b() catch b() finally closable_66e93e8504bf0: close closable_66e93e8504bf0: open a() start closable_66e93e8504bfc: __construct a() end b() start closable_66e93e8504c02: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.8
closable_66e93e8503d5a: __construct closable_66e93e8503dd5: __construct closable_66e93e8503ddb: __construct a() start closable_66e93e8503de1: __construct a() end b() start closable_66e93e8503dee: __construct b() catch b() finally closable_66e93e8503dee: close closable_66e93e8503dee: open a() start closable_66e93e8503e17: __construct a() end b() start closable_66e93e8503e1f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e2b: __construct a() end b() start closable_66e93e8503e31: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e3a: __construct a() end b() start closable_66e93e8503e40: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e49: __construct a() end b() start closable_66e93e8503e50: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e56: __construct a() end b() start closable_66e93e8503e5a: __construct b() catch b() finally closable_66e93e8503e5a: close closable_66e93e8503e5a: open a() start closable_66e93e8503e67: __construct a() end b() start closable_66e93e8503e6b: __construct b() catch b() finally closable_66e93e8503e6b: close closable_66e93e8503e6b: open a() start closable_66e93e8503e77: __construct a() end b() start closable_66e93e8503e7c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503e82: __construct a() end b() start closable_66e93e8503e87: __construct b() catch b() finally closable_66e93e8503e87: close closable_66e93e8503e87: open a() start closable_66e93e8503e94: __construct a() end b() start closable_66e93e8503e99: __construct b() catch b() finally closable_66e93e8503e99: close closable_66e93e8503e99: open a() start closable_66e93e8503ea4: __construct a() end b() start closable_66e93e8503ea9: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.7
closable_66e93e8503bdd: __construct closable_66e93e8503bf3: __construct closable_66e93e8503bf6: __construct a() start closable_66e93e8503bfb: __construct a() end b() start closable_66e93e8503bff: __construct b() catch b() finally closable_66e93e8503bff: close closable_66e93e8503bff: open a() start closable_66e93e8503c20: __construct a() end b() start closable_66e93e8503c27: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c33: __construct a() end b() start closable_66e93e8503c39: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c41: __construct a() end b() start closable_66e93e8503c46: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c4d: __construct a() end b() start closable_66e93e8503c52: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c58: __construct a() end b() start closable_66e93e8503c5d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c64: __construct a() end b() start closable_66e93e8503c6a: __construct b() catch b() finally closable_66e93e8503c6a: close closable_66e93e8503c6a: open a() start closable_66e93e8503c7d: __construct a() end b() start closable_66e93e8503c82: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503c8a: __construct a() end b() start closable_66e93e8503c90: __construct b() catch b() finally closable_66e93e8503c90: close closable_66e93e8503c90: open a() start closable_66e93e8503ca2: __construct a() end b() start closable_66e93e8503ca8: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8503caf: __construct a() end b() start closable_66e93e8503cb4: __construct b() catch b() finally closable_66e93e8503cb4: close closable_66e93e8503cb4: open
Output for 8.1.6
closable_66e93e85072e7: __construct closable_66e93e8507301: __construct closable_66e93e8507305: __construct a() start closable_66e93e850730a: __construct a() end b() start closable_66e93e850730f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507320: __construct a() end b() start closable_66e93e8507325: __construct b() catch b() finally closable_66e93e8507325: close closable_66e93e8507325: open a() start closable_66e93e8507338: __construct a() end b() start closable_66e93e850733d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507345: __construct a() end b() start closable_66e93e850734a: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507351: __construct a() end b() start closable_66e93e8507355: __construct b() catch b() finally closable_66e93e8507355: close closable_66e93e8507355: open a() start closable_66e93e8507363: __construct a() end b() start closable_66e93e8507367: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850736f: __construct a() end b() start closable_66e93e8507373: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850737a: __construct a() end b() start closable_66e93e850737f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8507386: __construct a() end b() start closable_66e93e850738b: __construct b() catch b() finally closable_66e93e850738b: close closable_66e93e850738b: open a() start closable_66e93e8507397: __construct a() end b() start closable_66e93e850739c: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85073a3: __construct a() end b() start closable_66e93e85073a8: __construct b() catch b() finally closable_66e93e85073a8: close closable_66e93e85073a8: open
Output for 8.1.5
closable_66e93e8504d24: __construct closable_66e93e8504d45: __construct closable_66e93e8504d49: __construct a() start closable_66e93e8504d4d: __construct a() end b() start closable_66e93e8504d51: __construct b() catch b() finally closable_66e93e8504d51: close closable_66e93e8504d51: open a() start closable_66e93e8504d6c: __construct a() end b() start closable_66e93e8504d72: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d7e: __construct a() end b() start closable_66e93e8504d85: __construct b() catch b() finally closable_66e93e8504d85: close closable_66e93e8504d85: open a() start closable_66e93e8504d93: __construct a() end b() start closable_66e93e8504d97: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504d9f: __construct a() end b() start closable_66e93e8504da3: __construct b() catch b() finally closable_66e93e8504da3: close closable_66e93e8504da3: open a() start closable_66e93e8504daf: __construct a() end b() start closable_66e93e8504db4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504dbc: __construct a() end b() start closable_66e93e8504dc2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504dcc: __construct a() end b() start closable_66e93e8504dd2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504ddb: __construct a() end b() start closable_66e93e8504de0: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504de7: __construct a() end b() start closable_66e93e8504dec: __construct b() catch b() finally closable_66e93e8504dec: close closable_66e93e8504dec: open a() start closable_66e93e8504e1c: __construct a() end b() start closable_66e93e8504e23: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.4
closable_66e93e850524a: __construct closable_66e93e8505262: __construct closable_66e93e8505265: __construct a() start closable_66e93e8505269: __construct a() end b() start closable_66e93e850526d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850527c: __construct a() end b() start closable_66e93e8505281: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850528a: __construct a() end b() start closable_66e93e8505291: __construct b() catch b() finally closable_66e93e8505291: close closable_66e93e8505291: open a() start closable_66e93e85052ac: __construct a() end b() start closable_66e93e85052b2: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052b9: __construct a() end b() start closable_66e93e85052be: __construct b() catch b() finally closable_66e93e85052be: close closable_66e93e85052be: open a() start closable_66e93e85052cb: __construct a() end b() start closable_66e93e85052d0: __construct b() catch b() finally closable_66e93e85052d0: close closable_66e93e85052d0: open a() start closable_66e93e85052dc: __construct a() end b() start closable_66e93e85052e1: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052e8: __construct a() end b() start closable_66e93e85052ec: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052f3: __construct a() end b() start closable_66e93e85052f7: __construct b() catch b() finally closable_66e93e85052f7: close closable_66e93e85052f7: open a() start closable_66e93e8505303: __construct a() end b() start closable_66e93e8505308: __construct b() catch b() finally closable_66e93e8505308: close closable_66e93e8505308: open a() start closable_66e93e8505313: __construct a() end b() start closable_66e93e8505318: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.3
closable_66e93e85048e3: __construct closable_66e93e85048fd: __construct closable_66e93e8504901: __construct a() start closable_66e93e8504906: __construct a() end b() start closable_66e93e850490b: __construct b() catch b() finally closable_66e93e850490b: close closable_66e93e850490b: open a() start closable_66e93e8504926: __construct a() end b() start closable_66e93e850492b: __construct b() catch b() finally closable_66e93e850492b: close closable_66e93e850492b: open a() start closable_66e93e8504938: __construct a() end b() start closable_66e93e850493d: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504946: __construct a() end b() start closable_66e93e850494b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504953: __construct a() end b() start closable_66e93e8504957: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850495e: __construct a() end b() start closable_66e93e8504963: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850496a: __construct a() end b() start closable_66e93e850496f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504976: __construct a() end b() start closable_66e93e850497b: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504981: __construct a() end b() start closable_66e93e8504986: __construct b() catch b() finally closable_66e93e8504986: close closable_66e93e8504986: open a() start closable_66e93e8504993: __construct a() end b() start closable_66e93e8504998: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850499f: __construct a() end b() start closable_66e93e85049a4: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.2
closable_66e93e850520f: __construct closable_66e93e8505226: __construct closable_66e93e850522b: __construct a() start closable_66e93e8505230: __construct a() end b() start closable_66e93e8505234: __construct b() catch b() finally closable_66e93e8505234: close closable_66e93e8505234: open a() start closable_66e93e850524f: __construct a() end b() start closable_66e93e8505255: __construct b() catch b() finally closable_66e93e8505255: close closable_66e93e8505255: open a() start closable_66e93e8505262: __construct a() end b() start closable_66e93e8505267: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505272: __construct a() end b() start closable_66e93e8505277: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850527e: __construct a() end b() start closable_66e93e8505283: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850528a: __construct a() end b() start closable_66e93e850528f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505296: __construct a() end b() start closable_66e93e850529b: __construct b() catch b() finally closable_66e93e850529b: close closable_66e93e850529b: open a() start closable_66e93e85052a8: __construct a() end b() start closable_66e93e85052ad: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052b4: __construct a() end b() start closable_66e93e85052b9: __construct b() catch b() finally closable_66e93e85052b9: close closable_66e93e85052b9: open a() start closable_66e93e85052c5: __construct a() end b() start closable_66e93e85052ca: __construct b() catch b() finally closable_66e93e85052ca: close closable_66e93e85052ca: open a() start closable_66e93e85052d7: __construct a() end b() start closable_66e93e85052db: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59
Output for 8.1.1
closable_66e93e85049de: __construct closable_66e93e85049f8: __construct closable_66e93e85049fc: __construct a() start closable_66e93e8504a01: __construct a() end b() start closable_66e93e8504a07: __construct b() catch b() finally closable_66e93e8504a07: close closable_66e93e8504a07: open a() start closable_66e93e8504a20: __construct a() end b() start closable_66e93e8504a24: __construct b() catch b() finally closable_66e93e8504a24: close closable_66e93e8504a24: open a() start closable_66e93e8504a32: __construct a() end b() start closable_66e93e8504a37: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a42: __construct a() end b() start closable_66e93e8504a47: __construct b() catch b() finally closable_66e93e8504a47: close closable_66e93e8504a47: open a() start closable_66e93e8504a54: __construct a() end b() start closable_66e93e8504a59: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a61: __construct a() end b() start closable_66e93e8504a65: __construct b() catch b() finally closable_66e93e8504a65: close closable_66e93e8504a65: open a() start closable_66e93e8504a72: __construct a() end b() start closable_66e93e8504a77: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8504a7e: __construct a() end b() start closable_66e93e8504a83: __construct b() catch b() finally closable_66e93e8504a83: close closable_66e93e8504a83: open a() start closable_66e93e8504a8f: __construct a() end b() start closable_66e93e8504a94: __construct b() catch b() finally closable_66e93e8504a94: close closable_66e93e8504a94: open a() start closable_66e93e8504aa0: __construct a() end b() start closable_66e93e8504aa6: __construct b() catch b() finally closable_66e93e8504aa6: close closable_66e93e8504aa6: open a() start closable_66e93e8504ab2: __construct a() end b() start closable_66e93e8504ab7: __construct b() catch b() finally closable_66e93e8504ab7: close closable_66e93e8504ab7: open
Output for 8.1.0
closable_66e93e8505267: __construct closable_66e93e8505283: __construct closable_66e93e8505286: __construct a() start closable_66e93e850528b: __construct a() end b() start closable_66e93e850528f: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e850529c: __construct a() end b() start closable_66e93e85052a1: __construct b() catch b() finally closable_66e93e85052a1: close closable_66e93e85052a1: open a() start closable_66e93e85052b6: __construct a() end b() start closable_66e93e85052bb: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052c3: __construct a() end b() start closable_66e93e85052c8: __construct b() catch b() finally closable_66e93e85052c8: close closable_66e93e85052c8: open a() start closable_66e93e85052d5: __construct a() end b() start closable_66e93e85052da: __construct b() catch b() finally closable_66e93e85052da: close closable_66e93e85052da: open a() start closable_66e93e85052e6: __construct a() end b() start closable_66e93e85052ea: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052f1: __construct a() end b() start closable_66e93e85052f6: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e85052fc: __construct a() end b() start closable_66e93e8505301: __construct b() catch b() finally closable_66e93e8505301: close closable_66e93e8505301: open a() start closable_66e93e850530d: __construct a() end b() start closable_66e93e8505311: __construct b() catch b() finally closable_66e93e8505311: close closable_66e93e8505311: open a() start closable_66e93e850531e: __construct a() end b() start closable_66e93e8505322: __construct b() return b() finally Warning: Undefined variable $b in /in/tkFYi on line 59 a() start closable_66e93e8505329: __construct a() end b() start closable_66e93e850532e: __construct b() catch b() finally closable_66e93e850532e: close closable_66e93e850532e: open

preferences:
46.62 ms | 669 KiB | 5 Q