Home
last modified time | relevance | path

Searched refs:RecursiveThingy (Results 1 – 1 of 1) sorted by relevance

/external/v8/test/mjsunit/es7/
Dobject-observe.js688 function RecursiveThingy() {} class
690 RecursiveThingy.MULTIPLY_FIRST_N = 'multiplyFirstN';
692 RecursiveThingy.prototype = {
700 notifier.performChange(RecursiveThingy.MULTIPLY_FIRST_N, function() {
706 type: RecursiveThingy.MULTIPLY_FIRST_N,
713 RecursiveThingy.observe = function(thingy, callback) {
714 Object.observe(thingy, callback, [RecursiveThingy.MULTIPLY_FIRST_N]);
717 RecursiveThingy.unobserve = function(thingy, callback) {
721 var thingy = new RecursiveThingy;
725 RecursiveThingy.observe(thingy, observer2.callback);
[all …]