Lines Matching refs:notify

148 assertThrows(function() { notifier.notify({}); }, TypeError);
149 assertThrows(function() { notifier.notify({ type: 4 }); }, TypeError);
160 var notify = notifier.notify; variable
161 assertThrows(function() { notify.call(undefined, { type: 'a' }); }, TypeError);
162 assertThrows(function() { notify.call(null, { type: 'a' }); }, TypeError);
163 assertThrows(function() { notify.call(5, { type: 'a' }); }, TypeError);
164 assertThrows(function() { notify.call('hello', { type: 'a' }); }, TypeError);
165 assertThrows(function() { notify.call(false, { type: 'a' }); }, TypeError);
166 assertThrows(function() { notify.call({}, { type: 'a' }); }, TypeError);
168 notifier.notify(changeRecordWithAccessor);
187 notifier.notify({ type: 'foo', protoExpando: 'val'});
195 notifier.notify({
201 notifier.notify({
217 notifier.notify({ type: 'true' });
218 notifier.notify({ type: 'false' });
219 notifier.notify({ type: '1' });
220 notifier.notify({ type: '-1' });
221 notifier.notify({ type: 'null' });
222 notifier.notify({ type: 'nill' });
223 notifier.notify({ type: 'undefined' });
224 notifier.notify({ type: 'defined' });
243 Object.getNotifier(obj).notify({
253 Object.getNotifier(obj).notify({
264 Object.getNotifier(obj).notify({
273 Object.getNotifier(obj).notify({
277 Object.getNotifier(obj).notify({
407 Object.getNotifier(obj).notify({
413 Object.getNotifier(obj).notify({
419 Object.getNotifier(obj).notify({
425 Object.getNotifier(obj).notify({
431 Object.getNotifier(obj).notify({
447 Object.getNotifier(obj).notify({
450 Object.getNotifier(obj).notify({
453 Object.getNotifier(obj).notify({
456 Object.getNotifier(obj).notify({
459 Object.getNotifier(obj).notify({
467 Object.getNotifier(obj).notify({
470 Object.getNotifier(obj).notify({
473 Object.getNotifier(obj).notify({
476 Object.getNotifier(obj).notify({
479 Object.getNotifier(obj).notify({
482 Object.getNotifier(obj).notify({
495 Object.getNotifier(obj).notify({
498 Object.getNotifier(obj).notify({
501 Object.getNotifier(obj).notify({
504 Object.getNotifier(obj).notify({
507 Object.getNotifier(obj).notify({
510 Object.getNotifier(obj).notify({
705 notifier.notify({
765 notifier.notify({
796 Object.getNotifier(obj).notify({
799 Object.getNotifier(obj2).notify({
802 Object.getNotifier(obj3).notify({
1443 Object.getNotifier(this).notify({ type: 'lengthChange' });