3v4l.org

run code in 300+ PHP versions simultaneously
<?php $entity = makeEntity(null, 'SuperWidget', [ 'foo' => 'bar', 'baz' => 'bla', ], // false // Toggle these two line's comments. true // Leave off or false to not show logging. ); $entity->send(_m('propBoo', 'hoo')); $entity->send(_m('propOop', 'Php')); $entity->send(_m('propBaz', 'Apt')); $entity->send(_m('withProps', [ ['propBaz', 'Oth'], ['propOth', 'Win'], ])); $entity->send(_m('propGen', ['Era','Tor',])); // Erases the history, should we have it? $entity->send(_m('fromProps', [['propOof','Uhh']])); $props = $entity->send(_i()); foreach($props as $prop => $props) { echo sprintf('%s(%s=%s)%s', $entity->key(), $prop, \json_encode($props), PHP_EOL ); } function makeEntity( ?int $id = null, string $type, ?array $props = null, ?bool $log = null ) { $id = $id ?? random_int(1, 500000); $logger = _f(!$log ?: function($signal, $message = null, ?string $tmpl = null) use($id) { $tmpl = sprintf('Receiver(%d, Signal: %s)', $id, $tmpl ?? '[%s](%s)'); echo sprintf($tmpl, $signal, \json_encode($message)).PHP_EOL; }); $apply = function($changes, $for) use($logger) { foreach($changes as $set) { $action = array_shift($set); // First one is the method, PropertySet list($prop, $value) = $set; if (substr($prop, 0, 7) !== 'Stream:') $for[$prop] = $value; $logger(sprintf('Apply(%s=%s)', $action, \json_encode($set)), null, '%s'); } return $for; }; $propDecorator = function(array $changes, array $changeSet = []) { return array_reduce($changes, function($changeSet, array $change) { $propName = strtolower(substr($change[0], 4)); $changeSet[] = ['PropertySet', $propName, $change]; return $changeSet; }, $changeSet); }; $filterSignalOut = function($changeSet) { return array_filter($changeSet, function($change) { return substr($change[1], 0, 7) !== 'Stream:'; }); }; $filterSignalIn = function($changeSet) { return array_filter($changeSet, function($change) { return substr($change[1], 0, 7) === 'Stream:'; }); }; $changeSet = [ ['SIGINI', 'Stream:Init', microtime(),], ['SIGIID', 'Stream:InitId', $id], ['SIGBND', 'Stream:BindProps', $props,], // Initial state. ]; while (true) { list($signal, $message) = yield; $signal = preg_replace('/[^a-z\d]/i', '', (string) $signal); $logger($signal, $message); if (substr($signal, 0, 4) === 'prop') { $propName = strtolower(substr($signal, 4)); $changeSet[] = ['PropertySet', $propName, $message]; } if ($signal === 'withProps') { $changeSet = $propDecorator($message, $changeSet); } if ($signal === 'fromProps') { $changeSet[] = ['SIGFRM', 'Stream:From', microtime(),]; $changeSet[] = ['SIGIFO', 'Stream:PrunedHistory', \json_encode($filterSignalOut($changeSet)), ]; $changeSet = $propDecorator($message, $filterSignalIn($changeSet)); } if ($signal === 'iterator') { $changeSet[] = ['SIGEND', 'Stream:End', microtime(),]; yield $type => $apply($changeSet, $props); } } } function _f($F = null) {return is_callable($F) ? $F : function(){};} function _i() {return _m('iterator');} function _m($signal, $message = null) {return [$signal ?? 'iterator',$message];}
Output for 7.3.1
Receiver(418723, Signal: [propBoo]("hoo")) Receiver(418723, Signal: [propOop]("Php")) Receiver(418723, Signal: [propBaz]("Apt")) Receiver(418723, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(418723, Signal: [propGen](["Era","Tor"])) Receiver(418723, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(418723, Signal: [iterator](null)) Receiver(418723, Signal: Apply(SIGINI=["Stream:Init","0.38134000 1547517069"])) Receiver(418723, Signal: Apply(SIGIID=["Stream:InitId",418723])) Receiver(418723, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(418723, Signal: Apply(SIGFRM=["Stream:From","0.38146500 1547517069"])) Receiver(418723, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(418723, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(418723, Signal: Apply(SIGEND=["Stream:End","0.38148600 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.3.0
Receiver(56723, Signal: [propBoo]("hoo")) Receiver(56723, Signal: [propOop]("Php")) Receiver(56723, Signal: [propBaz]("Apt")) Receiver(56723, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(56723, Signal: [propGen](["Era","Tor"])) Receiver(56723, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(56723, Signal: [iterator](null)) Receiver(56723, Signal: Apply(SIGINI=["Stream:Init","0.39828300 1547517069"])) Receiver(56723, Signal: Apply(SIGIID=["Stream:InitId",56723])) Receiver(56723, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(56723, Signal: Apply(SIGFRM=["Stream:From","0.39841800 1547517069"])) Receiver(56723, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(56723, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(56723, Signal: Apply(SIGEND=["Stream:End","0.39843700 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.13
Receiver(22105, Signal: [propBoo]("hoo")) Receiver(22105, Signal: [propOop]("Php")) Receiver(22105, Signal: [propBaz]("Apt")) Receiver(22105, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(22105, Signal: [propGen](["Era","Tor"])) Receiver(22105, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(22105, Signal: [iterator](null)) Receiver(22105, Signal: Apply(SIGINI=["Stream:Init","0.49811100 1547517069"])) Receiver(22105, Signal: Apply(SIGIID=["Stream:InitId",22105])) Receiver(22105, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(22105, Signal: Apply(SIGFRM=["Stream:From","0.49822900 1547517069"])) Receiver(22105, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(22105, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(22105, Signal: Apply(SIGEND=["Stream:End","0.49824800 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.12
Receiver(1892, Signal: [propBoo]("hoo")) Receiver(1892, Signal: [propOop]("Php")) Receiver(1892, Signal: [propBaz]("Apt")) Receiver(1892, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(1892, Signal: [propGen](["Era","Tor"])) Receiver(1892, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(1892, Signal: [iterator](null)) Receiver(1892, Signal: Apply(SIGINI=["Stream:Init","0.51557800 1547517069"])) Receiver(1892, Signal: Apply(SIGIID=["Stream:InitId",1892])) Receiver(1892, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(1892, Signal: Apply(SIGFRM=["Stream:From","0.51571100 1547517069"])) Receiver(1892, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(1892, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(1892, Signal: Apply(SIGEND=["Stream:End","0.51573200 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.11
Receiver(137970, Signal: [propBoo]("hoo")) Receiver(137970, Signal: [propOop]("Php")) Receiver(137970, Signal: [propBaz]("Apt")) Receiver(137970, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(137970, Signal: [propGen](["Era","Tor"])) Receiver(137970, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(137970, Signal: [iterator](null)) Receiver(137970, Signal: Apply(SIGINI=["Stream:Init","0.63373000 1547517069"])) Receiver(137970, Signal: Apply(SIGIID=["Stream:InitId",137970])) Receiver(137970, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(137970, Signal: Apply(SIGFRM=["Stream:From","0.63382900 1547517069"])) Receiver(137970, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(137970, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(137970, Signal: Apply(SIGEND=["Stream:End","0.63384500 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.10
Receiver(192264, Signal: [propBoo]("hoo")) Receiver(192264, Signal: [propOop]("Php")) Receiver(192264, Signal: [propBaz]("Apt")) Receiver(192264, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(192264, Signal: [propGen](["Era","Tor"])) Receiver(192264, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(192264, Signal: [iterator](null)) Receiver(192264, Signal: Apply(SIGINI=["Stream:Init","0.67151700 1547517069"])) Receiver(192264, Signal: Apply(SIGIID=["Stream:InitId",192264])) Receiver(192264, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(192264, Signal: Apply(SIGFRM=["Stream:From","0.67161400 1547517069"])) Receiver(192264, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(192264, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(192264, Signal: Apply(SIGEND=["Stream:End","0.67163500 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.9
Receiver(354637, Signal: [propBoo]("hoo")) Receiver(354637, Signal: [propOop]("Php")) Receiver(354637, Signal: [propBaz]("Apt")) Receiver(354637, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(354637, Signal: [propGen](["Era","Tor"])) Receiver(354637, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(354637, Signal: [iterator](null)) Receiver(354637, Signal: Apply(SIGINI=["Stream:Init","0.66786700 1547517069"])) Receiver(354637, Signal: Apply(SIGIID=["Stream:InitId",354637])) Receiver(354637, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(354637, Signal: Apply(SIGFRM=["Stream:From","0.66796300 1547517069"])) Receiver(354637, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(354637, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(354637, Signal: Apply(SIGEND=["Stream:End","0.66797800 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.8
Receiver(20245, Signal: [propBoo]("hoo")) Receiver(20245, Signal: [propOop]("Php")) Receiver(20245, Signal: [propBaz]("Apt")) Receiver(20245, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(20245, Signal: [propGen](["Era","Tor"])) Receiver(20245, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(20245, Signal: [iterator](null)) Receiver(20245, Signal: Apply(SIGINI=["Stream:Init","0.74902600 1547517069"])) Receiver(20245, Signal: Apply(SIGIID=["Stream:InitId",20245])) Receiver(20245, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(20245, Signal: Apply(SIGFRM=["Stream:From","0.74914900 1547517069"])) Receiver(20245, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(20245, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(20245, Signal: Apply(SIGEND=["Stream:End","0.74916900 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.7
Receiver(219381, Signal: [propBoo]("hoo")) Receiver(219381, Signal: [propOop]("Php")) Receiver(219381, Signal: [propBaz]("Apt")) Receiver(219381, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(219381, Signal: [propGen](["Era","Tor"])) Receiver(219381, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(219381, Signal: [iterator](null)) Receiver(219381, Signal: Apply(SIGINI=["Stream:Init","0.79608400 1547517069"])) Receiver(219381, Signal: Apply(SIGIID=["Stream:InitId",219381])) Receiver(219381, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(219381, Signal: Apply(SIGFRM=["Stream:From","0.79618900 1547517069"])) Receiver(219381, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(219381, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(219381, Signal: Apply(SIGEND=["Stream:End","0.79621200 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.6
Receiver(78410, Signal: [propBoo]("hoo")) Receiver(78410, Signal: [propOop]("Php")) Receiver(78410, Signal: [propBaz]("Apt")) Receiver(78410, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(78410, Signal: [propGen](["Era","Tor"])) Receiver(78410, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(78410, Signal: [iterator](null)) Receiver(78410, Signal: Apply(SIGINI=["Stream:Init","0.79624600 1547517069"])) Receiver(78410, Signal: Apply(SIGIID=["Stream:InitId",78410])) Receiver(78410, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(78410, Signal: Apply(SIGFRM=["Stream:From","0.79634100 1547517069"])) Receiver(78410, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(78410, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(78410, Signal: Apply(SIGEND=["Stream:End","0.79635700 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.5
Receiver(95367, Signal: [propBoo]("hoo")) Receiver(95367, Signal: [propOop]("Php")) Receiver(95367, Signal: [propBaz]("Apt")) Receiver(95367, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(95367, Signal: [propGen](["Era","Tor"])) Receiver(95367, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(95367, Signal: [iterator](null)) Receiver(95367, Signal: Apply(SIGINI=["Stream:Init","0.88211300 1547517069"])) Receiver(95367, Signal: Apply(SIGIID=["Stream:InitId",95367])) Receiver(95367, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(95367, Signal: Apply(SIGFRM=["Stream:From","0.88221500 1547517069"])) Receiver(95367, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(95367, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(95367, Signal: Apply(SIGEND=["Stream:End","0.88223000 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.4
Receiver(359508, Signal: [propBoo]("hoo")) Receiver(359508, Signal: [propOop]("Php")) Receiver(359508, Signal: [propBaz]("Apt")) Receiver(359508, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(359508, Signal: [propGen](["Era","Tor"])) Receiver(359508, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(359508, Signal: [iterator](null)) Receiver(359508, Signal: Apply(SIGINI=["Stream:Init","0.92738700 1547517069"])) Receiver(359508, Signal: Apply(SIGIID=["Stream:InitId",359508])) Receiver(359508, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(359508, Signal: Apply(SIGFRM=["Stream:From","0.92759000 1547517069"])) Receiver(359508, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(359508, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(359508, Signal: Apply(SIGEND=["Stream:End","0.92762100 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.3
Receiver(433846, Signal: [propBoo]("hoo")) Receiver(433846, Signal: [propOop]("Php")) Receiver(433846, Signal: [propBaz]("Apt")) Receiver(433846, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(433846, Signal: [propGen](["Era","Tor"])) Receiver(433846, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(433846, Signal: [iterator](null)) Receiver(433846, Signal: Apply(SIGINI=["Stream:Init","0.94270400 1547517069"])) Receiver(433846, Signal: Apply(SIGIID=["Stream:InitId",433846])) Receiver(433846, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(433846, Signal: Apply(SIGFRM=["Stream:From","0.94281000 1547517069"])) Receiver(433846, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(433846, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(433846, Signal: Apply(SIGEND=["Stream:End","0.94282700 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.2
Receiver(240931, Signal: [propBoo]("hoo")) Receiver(240931, Signal: [propOop]("Php")) Receiver(240931, Signal: [propBaz]("Apt")) Receiver(240931, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(240931, Signal: [propGen](["Era","Tor"])) Receiver(240931, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(240931, Signal: [iterator](null)) Receiver(240931, Signal: Apply(SIGINI=["Stream:Init","0.02258800 1547517070"])) Receiver(240931, Signal: Apply(SIGIID=["Stream:InitId",240931])) Receiver(240931, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(240931, Signal: Apply(SIGFRM=["Stream:From","0.02271800 1547517070"])) Receiver(240931, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(240931, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(240931, Signal: Apply(SIGEND=["Stream:End","0.02273900 1547517070"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.1
Receiver(168343, Signal: [propBoo]("hoo")) Receiver(168343, Signal: [propOop]("Php")) Receiver(168343, Signal: [propBaz]("Apt")) Receiver(168343, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(168343, Signal: [propGen](["Era","Tor"])) Receiver(168343, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(168343, Signal: [iterator](null)) Receiver(168343, Signal: Apply(SIGINI=["Stream:Init","0.07215100 1547517070"])) Receiver(168343, Signal: Apply(SIGIID=["Stream:InitId",168343])) Receiver(168343, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(168343, Signal: Apply(SIGFRM=["Stream:From","0.07224600 1547517070"])) Receiver(168343, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(168343, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(168343, Signal: Apply(SIGEND=["Stream:End","0.07226100 1547517070"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.2.0
Receiver(40294, Signal: [propBoo]("hoo")) Receiver(40294, Signal: [propOop]("Php")) Receiver(40294, Signal: [propBaz]("Apt")) Receiver(40294, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(40294, Signal: [propGen](["Era","Tor"])) Receiver(40294, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(40294, Signal: [iterator](null)) Receiver(40294, Signal: Apply(SIGINI=["Stream:Init","0.07665000 1547517070"])) Receiver(40294, Signal: Apply(SIGIID=["Stream:InitId",40294])) Receiver(40294, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(40294, Signal: Apply(SIGFRM=["Stream:From","0.07674800 1547517070"])) Receiver(40294, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(40294, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(40294, Signal: Apply(SIGEND=["Stream:End","0.07676200 1547517070"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.25
Receiver(414319, Signal: [propBoo]("hoo")) Receiver(414319, Signal: [propOop]("Php")) Receiver(414319, Signal: [propBaz]("Apt")) Receiver(414319, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(414319, Signal: [propGen](["Era","Tor"])) Receiver(414319, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(414319, Signal: [iterator](null)) Receiver(414319, Signal: Apply(SIGINI=["Stream:Init","0.51500200 1547517069"])) Receiver(414319, Signal: Apply(SIGIID=["Stream:InitId",414319])) Receiver(414319, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(414319, Signal: Apply(SIGFRM=["Stream:From","0.51513600 1547517069"])) Receiver(414319, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(414319, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(414319, Signal: Apply(SIGEND=["Stream:End","0.51516100 1547517069"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.15
Receiver(324380, Signal: [propBoo]("hoo")) Receiver(324380, Signal: [propOop]("Php")) Receiver(324380, Signal: [propBaz]("Apt")) Receiver(324380, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(324380, Signal: [propGen](["Era","Tor"])) Receiver(324380, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(324380, Signal: [iterator](null)) Receiver(324380, Signal: Apply(SIGINI=["Stream:Init","0.00557400 1520756907"])) Receiver(324380, Signal: Apply(SIGIID=["Stream:InitId",324380])) Receiver(324380, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(324380, Signal: Apply(SIGFRM=["Stream:From","0.01869100 1520756907"])) Receiver(324380, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(324380, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(324380, Signal: Apply(SIGEND=["Stream:End","0.01873300 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.14
Receiver(67643, Signal: [propBoo]("hoo")) Receiver(67643, Signal: [propOop]("Php")) Receiver(67643, Signal: [propBaz]("Apt")) Receiver(67643, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(67643, Signal: [propGen](["Era","Tor"])) Receiver(67643, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(67643, Signal: [iterator](null)) Receiver(67643, Signal: Apply(SIGINI=["Stream:Init","0.01146800 1520756907"])) Receiver(67643, Signal: Apply(SIGIID=["Stream:InitId",67643])) Receiver(67643, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(67643, Signal: Apply(SIGFRM=["Stream:From","0.01185100 1520756907"])) Receiver(67643, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(67643, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(67643, Signal: Apply(SIGEND=["Stream:End","0.01190600 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.13
Receiver(169712, Signal: [propBoo]("hoo")) Receiver(169712, Signal: [propOop]("Php")) Receiver(169712, Signal: [propBaz]("Apt")) Receiver(169712, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(169712, Signal: [propGen](["Era","Tor"])) Receiver(169712, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(169712, Signal: [iterator](null)) Receiver(169712, Signal: Apply(SIGINI=["Stream:Init","0.00835900 1520756907"])) Receiver(169712, Signal: Apply(SIGIID=["Stream:InitId",169712])) Receiver(169712, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(169712, Signal: Apply(SIGFRM=["Stream:From","0.01461700 1520756907"])) Receiver(169712, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(169712, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(169712, Signal: Apply(SIGEND=["Stream:End","0.01476700 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.12
Receiver(382993, Signal: [propBoo]("hoo")) Receiver(382993, Signal: [propOop]("Php")) Receiver(382993, Signal: [propBaz]("Apt")) Receiver(382993, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(382993, Signal: [propGen](["Era","Tor"])) Receiver(382993, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(382993, Signal: [iterator](null)) Receiver(382993, Signal: Apply(SIGINI=["Stream:Init","0.00551100 1520756907"])) Receiver(382993, Signal: Apply(SIGIID=["Stream:InitId",382993])) Receiver(382993, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(382993, Signal: Apply(SIGFRM=["Stream:From","0.01853100 1520756907"])) Receiver(382993, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(382993, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(382993, Signal: Apply(SIGEND=["Stream:End","0.01865600 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.11
Receiver(144344, Signal: [propBoo]("hoo")) Receiver(144344, Signal: [propOop]("Php")) Receiver(144344, Signal: [propBaz]("Apt")) Receiver(144344, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(144344, Signal: [propGen](["Era","Tor"])) Receiver(144344, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(144344, Signal: [iterator](null)) Receiver(144344, Signal: Apply(SIGINI=["Stream:Init","0.00557000 1520756907"])) Receiver(144344, Signal: Apply(SIGIID=["Stream:InitId",144344])) Receiver(144344, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(144344, Signal: Apply(SIGFRM=["Stream:From","0.01282100 1520756907"])) Receiver(144344, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(144344, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(144344, Signal: Apply(SIGEND=["Stream:End","0.01291400 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.10
Receiver(365312, Signal: [propBoo]("hoo")) Receiver(365312, Signal: [propOop]("Php")) Receiver(365312, Signal: [propBaz]("Apt")) Receiver(365312, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(365312, Signal: [propGen](["Era","Tor"])) Receiver(365312, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(365312, Signal: [iterator](null)) Receiver(365312, Signal: Apply(SIGINI=["Stream:Init","0.00892100 1520756907"])) Receiver(365312, Signal: Apply(SIGIID=["Stream:InitId",365312])) Receiver(365312, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(365312, Signal: Apply(SIGFRM=["Stream:From","0.01419700 1520756907"])) Receiver(365312, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(365312, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(365312, Signal: Apply(SIGEND=["Stream:End","0.01439100 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.9
Receiver(366384, Signal: [propBoo]("hoo")) Receiver(366384, Signal: [propOop]("Php")) Receiver(366384, Signal: [propBaz]("Apt")) Receiver(366384, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(366384, Signal: [propGen](["Era","Tor"])) Receiver(366384, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(366384, Signal: [iterator](null)) Receiver(366384, Signal: Apply(SIGINI=["Stream:Init","0.00714300 1520756907"])) Receiver(366384, Signal: Apply(SIGIID=["Stream:InitId",366384])) Receiver(366384, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(366384, Signal: Apply(SIGFRM=["Stream:From","0.01609900 1520756907"])) Receiver(366384, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(366384, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(366384, Signal: Apply(SIGEND=["Stream:End","0.01615300 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.8
Receiver(455198, Signal: [propBoo]("hoo")) Receiver(455198, Signal: [propOop]("Php")) Receiver(455198, Signal: [propBaz]("Apt")) Receiver(455198, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(455198, Signal: [propGen](["Era","Tor"])) Receiver(455198, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(455198, Signal: [iterator](null)) Receiver(455198, Signal: Apply(SIGINI=["Stream:Init","0.00504000 1520756907"])) Receiver(455198, Signal: Apply(SIGIID=["Stream:InitId",455198])) Receiver(455198, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(455198, Signal: Apply(SIGFRM=["Stream:From","0.00527200 1520756907"])) Receiver(455198, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(455198, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(455198, Signal: Apply(SIGEND=["Stream:End","0.00532900 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.7
Receiver(169795, Signal: [propBoo]("hoo")) Receiver(169795, Signal: [propOop]("Php")) Receiver(169795, Signal: [propBaz]("Apt")) Receiver(169795, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(169795, Signal: [propGen](["Era","Tor"])) Receiver(169795, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(169795, Signal: [iterator](null)) Receiver(169795, Signal: Apply(SIGINI=["Stream:Init","0.00552700 1520756907"])) Receiver(169795, Signal: Apply(SIGIID=["Stream:InitId",169795])) Receiver(169795, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(169795, Signal: Apply(SIGFRM=["Stream:From","0.01173300 1520756907"])) Receiver(169795, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(169795, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(169795, Signal: Apply(SIGEND=["Stream:End","0.01181400 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.6
Receiver(403427, Signal: [propBoo]("hoo")) Receiver(403427, Signal: [propOop]("Php")) Receiver(403427, Signal: [propBaz]("Apt")) Receiver(403427, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(403427, Signal: [propGen](["Era","Tor"])) Receiver(403427, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(403427, Signal: [iterator](null)) Receiver(403427, Signal: Apply(SIGINI=["Stream:Init","0.02299100 1520756907"])) Receiver(403427, Signal: Apply(SIGIID=["Stream:InitId",403427])) Receiver(403427, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(403427, Signal: Apply(SIGFRM=["Stream:From","0.02336400 1520756907"])) Receiver(403427, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(403427, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(403427, Signal: Apply(SIGEND=["Stream:End","0.02343200 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.5
Receiver(35212, Signal: [propBoo]("hoo")) Receiver(35212, Signal: [propOop]("Php")) Receiver(35212, Signal: [propBaz]("Apt")) Receiver(35212, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(35212, Signal: [propGen](["Era","Tor"])) Receiver(35212, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(35212, Signal: [iterator](null)) Receiver(35212, Signal: Apply(SIGINI=["Stream:Init","0.02213200 1520756907"])) Receiver(35212, Signal: Apply(SIGIID=["Stream:InitId",35212])) Receiver(35212, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(35212, Signal: Apply(SIGFRM=["Stream:From","0.02256400 1520756907"])) Receiver(35212, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(35212, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(35212, Signal: Apply(SIGEND=["Stream:End","0.02262600 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.4
Receiver(356595, Signal: [propBoo]("hoo")) Receiver(356595, Signal: [propOop]("Php")) Receiver(356595, Signal: [propBaz]("Apt")) Receiver(356595, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(356595, Signal: [propGen](["Era","Tor"])) Receiver(356595, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(356595, Signal: [iterator](null)) Receiver(356595, Signal: Apply(SIGINI=["Stream:Init","0.02359800 1520756907"])) Receiver(356595, Signal: Apply(SIGIID=["Stream:InitId",356595])) Receiver(356595, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(356595, Signal: Apply(SIGFRM=["Stream:From","0.02400600 1520756907"])) Receiver(356595, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(356595, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(356595, Signal: Apply(SIGEND=["Stream:End","0.02408000 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.3
Receiver(14982, Signal: [propBoo]("hoo")) Receiver(14982, Signal: [propOop]("Php")) Receiver(14982, Signal: [propBaz]("Apt")) Receiver(14982, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(14982, Signal: [propGen](["Era","Tor"])) Receiver(14982, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(14982, Signal: [iterator](null)) Receiver(14982, Signal: Apply(SIGINI=["Stream:Init","0.02514500 1520756907"])) Receiver(14982, Signal: Apply(SIGIID=["Stream:InitId",14982])) Receiver(14982, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(14982, Signal: Apply(SIGFRM=["Stream:From","0.03652900 1520756907"])) Receiver(14982, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(14982, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(14982, Signal: Apply(SIGEND=["Stream:End","0.03661300 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.2
Receiver(429622, Signal: [propBoo]("hoo")) Receiver(429622, Signal: [propOop]("Php")) Receiver(429622, Signal: [propBaz]("Apt")) Receiver(429622, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(429622, Signal: [propGen](["Era","Tor"])) Receiver(429622, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(429622, Signal: [iterator](null)) Receiver(429622, Signal: Apply(SIGINI=["Stream:Init","0.02364000 1520756907"])) Receiver(429622, Signal: Apply(SIGIID=["Stream:InitId",429622])) Receiver(429622, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(429622, Signal: Apply(SIGFRM=["Stream:From","0.02883900 1520756907"])) Receiver(429622, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(429622, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(429622, Signal: Apply(SIGEND=["Stream:End","0.02889300 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.1
Receiver(435977, Signal: [propBoo]("hoo")) Receiver(435977, Signal: [propOop]("Php")) Receiver(435977, Signal: [propBaz]("Apt")) Receiver(435977, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(435977, Signal: [propGen](["Era","Tor"])) Receiver(435977, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(435977, Signal: [iterator](null)) Receiver(435977, Signal: Apply(SIGINI=["Stream:Init","0.00576500 1520756907"])) Receiver(435977, Signal: Apply(SIGIID=["Stream:InitId",435977])) Receiver(435977, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(435977, Signal: Apply(SIGFRM=["Stream:From","0.01325300 1520756907"])) Receiver(435977, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(435977, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(435977, Signal: Apply(SIGEND=["Stream:End","0.01331700 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])
Output for 7.1.0
Receiver(113945, Signal: [propBoo]("hoo")) Receiver(113945, Signal: [propOop]("Php")) Receiver(113945, Signal: [propBaz]("Apt")) Receiver(113945, Signal: [withProps]([["propBaz","Oth"],["propOth","Win"]])) Receiver(113945, Signal: [propGen](["Era","Tor"])) Receiver(113945, Signal: [fromProps]([["propOof","Uhh"]])) Receiver(113945, Signal: [iterator](null)) Receiver(113945, Signal: Apply(SIGINI=["Stream:Init","0.00580800 1520756907"])) Receiver(113945, Signal: Apply(SIGIID=["Stream:InitId",113945])) Receiver(113945, Signal: Apply(SIGBND=["Stream:BindProps",{"foo":"bar","baz":"bla"}])) Receiver(113945, Signal: Apply(SIGFRM=["Stream:From","0.01804200 1520756907"])) Receiver(113945, Signal: Apply(SIGIFO=["Stream:PrunedHistory","{\"3\":[\"PropertySet\",\"boo\",\"hoo\"],\"4\":[\"PropertySet\",\"oop\",\"Php\"],\"5\":[\"PropertySet\",\"baz\",\"Apt\"],\"6\":[\"PropertySet\",\"baz\",[\"propBaz\",\"Oth\"]],\"7\":[\"PropertySet\",\"oth\",[\"propOth\",\"Win\"]],\"8\":[\"PropertySet\",\"gen\",[\"Era\",\"Tor\"]]}"])) Receiver(113945, Signal: Apply(PropertySet=["oof",["propOof","Uhh"]])) Receiver(113945, Signal: Apply(SIGEND=["Stream:End","0.01812400 1520756907"])) SuperWidget(foo="bar") SuperWidget(baz="bla") SuperWidget(oof=["propOof","Uhh"])

preferences:
79.94 ms | 404 KiB | 38 Q