diff options
author | 2022-09-25 13:08:51 -0700 | |
---|---|---|
committer | 2022-09-25 13:08:51 -0700 | |
commit | a4d46fc7db7459e3e7e895d3013ffe65b0f0078c (patch) | |
tree | 8c6d78f3ccc127b16ff38fe098223bd9b69c2736 /src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp | |
parent | 7ce4a4e3d3f5f06a1258eefc49ce1da166e43886 (diff) | |
download | bun-a4d46fc7db7459e3e7e895d3013ffe65b0f0078c.tar.gz bun-a4d46fc7db7459e3e7e895d3013ffe65b0f0078c.tar.zst bun-a4d46fc7db7459e3e7e895d3013ffe65b0f0078c.zip |
:sleepy:jarred/subprocess
Diffstat (limited to 'src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp')
-rw-r--r-- | src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp b/src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp index a862fc0b4..79db2b727 100644 --- a/src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp +++ b/src/bun.js/builtins/cpp/ReadableStreamInternalsBuiltins.cpp @@ -2253,7 +2253,7 @@ const char* const s_readableStreamInternalsReadableStreamDefaultControllerCanClo const JSC::ConstructAbility s_readableStreamInternalsLazyLoadStreamCodeConstructAbility = JSC::ConstructAbility::CannotConstruct; const JSC::ConstructorKind s_readableStreamInternalsLazyLoadStreamCodeConstructorKind = JSC::ConstructorKind::None; const JSC::ImplementationVisibility s_readableStreamInternalsLazyLoadStreamCodeImplementationVisibility = JSC::ImplementationVisibility::Public; -const int s_readableStreamInternalsLazyLoadStreamCodeLength = 2701; +const int s_readableStreamInternalsLazyLoadStreamCodeLength = 2512; static const JSC::Intrinsic s_readableStreamInternalsLazyLoadStreamCodeIntrinsic = JSC::NoIntrinsic; const char* const s_readableStreamInternalsLazyLoadStreamCode = "(function (stream, autoAllocateChunkSize) {\n" \ @@ -2277,7 +2277,6 @@ const char* const s_readableStreamInternalsLazyLoadStreamCode = " handleResult = function handleResult(result, controller, view) {\n" \ " \"use strict\";\n" \ "\n" \ - " console.log(\"handleResult\", result, controller, view);\n" \ " \n" \ " if (result && @isPromise(result)) {\n" \ " return result.then(\n" \ @@ -2289,10 +2288,8 @@ const char* const s_readableStreamInternalsLazyLoadStreamCode = " );\n" \ " } else if (result !== false) {\n" \ " if (view && view.byteLength === result) {\n" \ - " console.log(\"view\", result, controller.byobRequest);\n" \ " controller.byobRequest.respondWithNewView(view);\n" \ " } else {\n" \ - " console.log(\"result\", result, controller.byobRequest);\n" \ " controller.byobRequest.respond(result);\n" \ " }\n" \ " }\n" \ |