Home | History | Annotate | Download | only in regress

Lines Matching refs:Child

50     var Child,
51 child;
52 Child = function() {};
53 Child.prototype = this;
54 child = new Child();
55 child.id = nextid();
56 child.parent = this;
57 child.left = this.last;
58 child.right = null;
59 child.head = null;
60 child.tail = null;
61 child.counter = 0;
63 this.tail.right = child;
64 this.tail = child;
66 this.head = this.tail = child;
68 return child;