| 1 | // moved from chapter 2 (/util/LinkedListX.js) |
| 2 | |
| 3 | class Node { |
| 4 | constructor(value) { |
| 5 | this.value = value |
| 6 | this.next = null; |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | class LinkedList { |
| 11 | constructor() { |
nothing calls this directly
no outgoing calls
no test coverage detected