(marker)
| 547 | } |
| 548 | |
| 549 | function emitDisplayInitDiag(marker) { |
| 550 | const state = checkDisplayInitState(); |
| 551 | emitDiagLine("PARPAR:DIAG:" + marker + ":displayClassExists=" + (state.displayClassExists ? "1" : "0")+ ":instance=" + (state.instance ? "present" : "null")+ ":edt=" + (state.edt ? "present" : "null") + (state.edtThreadName ? ":edtThreadName=" + state.edtThreadName : "")); |
| 552 | } |
| 553 | |
| 554 | // Enable forwarding System.out.println output to the main thread via postMessage. |
| 555 | // This is only needed in the browser JS port where Playwright cannot reliably |
no test coverage detected