(collectHistory)
| 5 | #history; |
| 6 | |
| 7 | constructor(collectHistory) { |
| 8 | this.#state = new Map(); |
| 9 | this.#timestamp = 0; |
| 10 | this.#valid = true; |
| 11 | if (collectHistory) { |
| 12 | this.#history = []; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | getState() { |
| 17 | const list = new Array(); |
nothing calls this directly
no outgoing calls
no test coverage detected