Lines Matching refs:next
72 * Pointer to this node's next sibling.
74 * @property next
76 this.next = null;
109 this.lastChild.next = node;
391 * from one level up to the next.
425 * Retrieves the next node in the test tree.
426 * @return {TestNode} The next node in the test tree or null if the end is reached.
437 } else if (this._cur.next) {
438 this._cur = this._cur.next;
440 while (this._cur && !this._cur.next && this._cur !== this._root){
456 this._cur = this._cur.next;
513 //get the next test node