diff options
author | 2023-07-20 14:50:13 -0700 | |
---|---|---|
committer | 2023-07-20 14:50:13 -0700 | |
commit | 8e12999917b7116244dbd4c2a6951d4f049df3bf (patch) | |
tree | 829c7c09a63a428018a70d56a074d9b444358ec1 /src/bun.js/bindings/Process.lut.h | |
parent | 73e44e16ea3b66ebd4ae10f4890792671c22b417 (diff) | |
download | bun-8e12999917b7116244dbd4c2a6951d4f049df3bf.tar.gz bun-8e12999917b7116244dbd4c2a6951d4f049df3bf.tar.zst bun-8e12999917b7116244dbd4c2a6951d4f049df3bf.zip |
set `_preload_modules` to empty array (#3709)
Diffstat (limited to 'src/bun.js/bindings/Process.lut.h')
-rw-r--r-- | src/bun.js/bindings/Process.lut.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/bindings/Process.lut.h b/src/bun.js/bindings/Process.lut.h index 81cf98c7d..3f2d9255d 100644 --- a/src/bun.js/bindings/Process.lut.h +++ b/src/bun.js/bindings/Process.lut.h @@ -202,7 +202,7 @@ static const struct HashTableValue processObjectTableValues[62] = { { "_getActiveRequests"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubFunctionReturningArray, 0 } }, { "_getActiveHandles"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubFunctionReturningArray, 0 } }, { "_linkedBinding"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubEmptyFunction, 0 } }, - { "_preload_modules"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, Process_stubEmptyObject } }, + { "_preload_modules"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, Process_stubEmptyArray } }, { "_rawDebug"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubEmptyFunction, 0 } }, { "_startProfilerIdleNotifier"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubEmptyFunction, 0 } }, { "_stopProfilerIdleNotifier"_s, static_cast<unsigned>(PropertyAttribute::Function), NoIntrinsic, { HashTableValue::NativeFunctionType, Process_stubEmptyFunction, 0 } }, |