Lines Matching refs:counterB
164 var obj = {counterA: 0, counterB: 0}; property in AnonymousFunction3ba3dbc70f00.obj
167 var incrB = function(){ obj.counterB += 1; };
172 assert.equal(obj.counterB, 1, 'counterB should have only been incremented once.');
378 var obj = {counterA: 0, counterB: 0}; property in AnonymousFunction3ba3dbc72f00.obj
382 obj.on('event', function() { obj.counterB += 1; });
387 assert.equal(obj.counterB, 2, 'counterB should have been incremented twice.');
407 var obj = {counterA: 0, counterB: 0}; property in AnonymousFunction3ba3dbc73200.obj
410 var incrB = function(){ obj.counterB += 1; obj.off('event', incrB); };
417 assert.equal(obj.counterB, 1, 'counterB should have only been incremented once.');
529 var obj = {counterA: 0, counterB: 0}; property in AnonymousFunction3ba3dbc74500.obj
532 var incrB = function(){ obj.counterB += 1; };
537 assert.equal(obj.counterB, 1, 'counterB should have only been incremented once.');