(charCode)
| 49 | }; |
| 50 | |
| 51 | const stderr = (charCode) => { |
| 52 | if (charCode) { |
| 53 | postMessage({ |
| 54 | type: "stderr", |
| 55 | stderr: charCode, |
| 56 | }); |
| 57 | } else { |
| 58 | console.log(typeof charCode, charCode); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | const stdinBuffer = new StdinBuffer(); |
| 63 |
nothing calls this directly
no test coverage detected
searching dependent graphs…