JS: fix writing from JS to stdout

This commit is contained in:
Alexey Andreev 2022-11-16 16:41:29 +01:00
parent 70e37dfed9
commit 68efdddddf

View File

@ -54,7 +54,7 @@ public final class Console {
} else {
for (int i = 0; i < len; ++i) {
byte b = data[i + off];
writeJs(b & 0xFF);
writeJsStdout(b & 0xFF);
}
}
}