Fix MSVC builderr pt 2

This commit is contained in:
ownedbywuigi 2026-05-09 12:52:23 -07:00 committed by wuggy
commit bcff9710c8

View file

@ -6949,6 +6949,9 @@ R"JS(
return closePromise;
}
)JS"
R"JS(
function __uxpTransferWritableStream(stream) {
if (!isWritableStream(stream))
return undefined;
@ -7104,6 +7107,9 @@ R"JS(
}
}
)JS"
R"JS(
function postReadableTransferPortError(record, error) {
var posted = tryPostReadableTransferPort(record.port,
{ type: "error", value: error });