From c90c14570a0375692da62eb11811e01babe28de8 Mon Sep 17 00:00:00 2001 From: Jake Champion Date: Fri, 9 Dec 2022 12:16:06 +0000 Subject: [PATCH] feat!: Disable JS iterator helpers as the feature is at Stage 3 and we should only enable by default Stage 4 features Proposal Status as of today: https://github.com/tc39/proposal-iterator-helpers/tree/2496da582fbcc9e4a937064373d5aa8bbde05260#status Stage definitions: https://tc39.es/process-document/ --- c-dependencies/js-compute-runtime/js-compute-runtime.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/c-dependencies/js-compute-runtime/js-compute-runtime.cpp b/c-dependencies/js-compute-runtime/js-compute-runtime.cpp index f7340b5691..9b75e9bfff 100644 --- a/c-dependencies/js-compute-runtime/js-compute-runtime.cpp +++ b/c-dependencies/js-compute-runtime/js-compute-runtime.cpp @@ -123,7 +123,6 @@ bool init_js() { .setBYOBStreamReadersEnabled(true) .setReadableStreamPipeToEnabled(true) .setWritableStreamsEnabled(true) - .setIteratorHelpersEnabled(true) .setWeakRefsEnabled(JS::WeakRefSpecifier::EnabledWithoutCleanupSome); JS::DisableIncrementalGC(cx);