Lines Matching refs:ee
344 Domain.prototype.add = function(ee) {
346 if (ee.domain === this)
350 if (ee.domain)
351 ee.domain.remove(ee);
362 if (this.domain && (ee instanceof Domain)) {
364 if (ee === d) return;
368 ObjectDefineProperty(ee, 'domain', {
375 ArrayPrototypePush(this.members, ee);
379 Domain.prototype.remove = function(ee) {
380 ee.domain = null;
381 const index = ArrayPrototypeIndexOf(this.members, ee);