(value)
| 1 | var BSTp = function(value) { |
| 2 | this.value = value; |
| 3 | this.left = null; |
| 4 | this.right = null; |
| 5 | this.parent = null; |
| 6 | }; |
| 7 | |
| 8 | var findSuccessor = function(node) { |
| 9 | var successor = null; |
nothing calls this directly
no outgoing calls
no test coverage detected