()
| 1011 | } |
| 1012 | |
| 1013 | private toggleDebugOptions() { |
| 1014 | // -1 is because we skip the last combination when toggling since it seems uncommon. |
| 1015 | this.currentDebugOption = (this.currentDebugOption + 1) % (debugOptionNames.length - 1); |
| 1016 | this.applyNewDebugOption(); |
| 1017 | } |
| 1018 | |
| 1019 | public applyNewDebugOption() { |
| 1020 | this.debugOptions.text = `Debug ${debugOptionNames[this.currentDebugOption]}`; |
nothing calls this directly
no test coverage detected