diff options
author | 2023-02-10 00:26:01 -0800 | |
---|---|---|
committer | 2023-02-10 00:27:06 -0800 | |
commit | 995880a7effe692b5482f04d908f07f1227c8f68 (patch) | |
tree | 72552dd5c18acc052d63fcc2d5ef3a288459d4db | |
parent | 941c6ed8146bbcaba882918ad3265a366296dab5 (diff) | |
download | bun-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.cpp | 1 |
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(); } } |