Lines Matching refs:next
420 this.next = undefined;
422 previous.next = this;
502 this.previous.next = this.next;
503 if (this.next !== undefined)
504 this.next.previous = this.previous;
533 // eslint-disable-next-line no-restricted-syntax
587 // eslint-disable-next-line no-restricted-syntax
612 root = { size: 1, next: undefined, resistStopPropagation: Boolean(resistStopPropagation) };
628 let handler = root.next;
634 handler = handler.next;
667 if (root === undefined || root.next === undefined)
670 let handler = root.next;
680 handler = handler.next;
686 if (root === undefined || root.next === undefined)
691 let handler = root.next;
702 handler = handler.next;
741 if (root === undefined || root.next === undefined) {
747 let handler = root.next;
748 let next;
757 // Cache the next item in case this iteration removes the current one
758 next = handler.next;
765 handler = next;
797 handler = next;