aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-02-10 00:26:01 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-02-10 00:27:06 -0800
commit995880a7effe692b5482f04d908f07f1227c8f68 (patch)
tree72552dd5c18acc052d63fcc2d5ef3a288459d4db
parent941c6ed8146bbcaba882918ad3265a366296dab5 (diff)
downloadbun-995880a7effe692b5482f04d908f07f1227c8f68.tar.gz
bun-995880a7effe692b5482f04d908f07f1227c8f68.tar.zst
bun-995880a7effe692b5482f04d908f07f1227c8f68.zip
Enable https://github.com/tc39/proposal-set-methods
-rw-r--r--src/bun.js/bindings/ZigGlobalObject.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/bindings/ZigGlobalObject.cpp b/src/bun.js/bindings/ZigGlobalObject.cpp
index 54ccba343..054e55bcc 100644
--- a/src/bun.js/bindings/ZigGlobalObject.cpp
+++ b/src/bun.js/bindings/ZigGlobalObject.cpp
@@ -205,6 +205,7 @@ extern "C" void JSCInitialize()
JSC::Options::useShadowRealm() = true;
JSC::Options::useResizableArrayBuffer() = true;
JSC::Options::showPrivateScriptsInStackTraces() = true;
+ JSC::Options::useSetMethods() = true;
JSC::Options::assertOptionsAreCoherent();
}
}