diff options
author | 2023-04-13 04:11:12 -0700 | |
---|---|---|
committer | 2023-04-13 04:11:12 -0700 | |
commit | aeb3bb949b0052d0573bef507f1b66bbcf4f3dc0 (patch) | |
tree | 2b9e76e71f666a81071a01ced1171fe80d244c15 /src/bun.js/bindings/JSEnvironmentVariableMap.cpp | |
parent | db15a23a637468c3fc67f2a6446698d758f58fbe (diff) | |
download | bun-aeb3bb949b0052d0573bef507f1b66bbcf4f3dc0.tar.gz bun-aeb3bb949b0052d0573bef507f1b66bbcf4f3dc0.tar.zst bun-aeb3bb949b0052d0573bef507f1b66bbcf4f3dc0.zip |
Upgrade WebKit (#2643)
* Missing export
* Regenerate builtins
* Fix crash in require()
* Various breaking JSC changes
* hopefully speed up C++ compilation a little
* Skip failing test fo rnow
* Update WebKit
* Add a comment
* Fix error in postinstall
* Update WebKit
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/bindings/JSEnvironmentVariableMap.cpp')
-rw-r--r-- | src/bun.js/bindings/JSEnvironmentVariableMap.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bun.js/bindings/JSEnvironmentVariableMap.cpp b/src/bun.js/bindings/JSEnvironmentVariableMap.cpp index 03c94d351..b90d9f44c 100644 --- a/src/bun.js/bindings/JSEnvironmentVariableMap.cpp +++ b/src/bun.js/bindings/JSEnvironmentVariableMap.cpp @@ -5,12 +5,16 @@ #include "JavaScriptCore/JSObject.h" #include "JavaScriptCore/ObjectConstructor.h" +#include "BunClientData.h" +using namespace JSC; extern "C" size_t Bun__getEnvNames(JSGlobalObject*, ZigString* names, size_t max); extern "C" bool Bun__getEnvValue(JSGlobalObject* globalObject, ZigString* name, ZigString* value); namespace Bun { +using namespace WebCore; + JSC_DEFINE_CUSTOM_GETTER(jsGetterEnvironmentVariable, (JSGlobalObject * globalObject, EncodedJSValue thisValue, PropertyName propertyName)) { VM& vm = globalObject->vm(); |