```js a = ko.pureComputed(function() { b(); }); b = ko.pureComputed(function() { a(); }); a(); b(); // RangeError: Maximum call stack size exceeded ``` Not sure if this is related to #1943.