(width)
| 60 | } |
| 61 | |
| 62 | createStub(width){ |
| 63 | const stub = new Node(this.idealPos, width, this.data); |
| 64 | stub.currentPos = this.currentPos; |
| 65 | stub.child = this; |
| 66 | this.parent = stub; |
| 67 | return stub; |
| 68 | } |
| 69 | |
| 70 | removeStub(){ |
| 71 | if(this.parent){ |
no outgoing calls
no test coverage detected