(buttonContainer = document.getElementById('buttons-container'))
| 5 | #buttonRows = buttons |
| 6 | |
| 7 | constructor(buttonContainer = document.getElementById('buttons-container')) { |
| 8 | this.#buttonContainer = buttonContainer |
| 9 | } |
| 10 | |
| 11 | generateButtons() { |
| 12 | this.#buttonRows.forEach(row => { |
nothing calls this directly
no outgoing calls
no test coverage detected