(title, tag)
| 29 | binaryOutput = null; |
| 30 | |
| 31 | onTitleChanged(title, tag) { |
| 32 | super.onTitleChanged(title, tag); |
| 33 | |
| 34 | if (title && (title !== "mcsim")) |
| 35 | console.log(`#xsbug-log connected to "${title}"`); |
| 36 | |
| 37 | this.doSetAllBreakpoint([], false, true); // break on exceptions |
| 38 | } |
| 39 | onLogged(path, line, data) { |
| 40 | this.log += data; |
| 41 | if (this.log.endsWith("\n")) { |
nothing calls this directly
no test coverage detected