From 29b22175bf6fc726d0b028c7bf5619ab89fca09a Mon Sep 17 00:00:00 2001 From: dave caruso Date: Fri, 15 Sep 2023 11:22:06 -0400 Subject: feat(runtime): add `process.binding` `uv`/`natives`/`config` + make global object properties lazy (#5355) * binding uv * we did that * some more bindings * fix doc * fix uv * yo * static hash table nonsense <3 * huge refactor to the global object i am not ready for merge conflicts * it works part 3 * lose --------- Co-authored-by: Jarred Sumner --- src/bun.js/bindings/ProcessBindingConstants.lut.h | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/bun.js/bindings/ProcessBindingConstants.lut.h (limited to 'src/bun.js/bindings/ProcessBindingConstants.lut.h') diff --git a/src/bun.js/bindings/ProcessBindingConstants.lut.h b/src/bun.js/bindings/ProcessBindingConstants.lut.h new file mode 100644 index 000000000..4ad86860d --- /dev/null +++ b/src/bun.js/bindings/ProcessBindingConstants.lut.h @@ -0,0 +1,31 @@ +// File generated via `make static-hash-table` / `make cpp` +static const struct CompactHashIndex processBindingConstantsTableIndex[17] = { + { -1, -1 }, + { -1, -1 }, + { -1, -1 }, + { 1, -1 }, + { -1, -1 }, + { -1, -1 }, + { -1, -1 }, + { 2, -1 }, + { -1, -1 }, + { -1, -1 }, + { -1, -1 }, + { -1, -1 }, + { 0, 16 }, + { -1, -1 }, + { -1, -1 }, + { 4, -1 }, + { 3, -1 }, +}; + +static const struct HashTableValue processBindingConstantsTableValues[5] = { + { "os"_s, static_cast(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetOs } }, + { "fs"_s, static_cast(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetFs } }, + { "crypto"_s, static_cast(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetCrypto } }, + { "zlib"_s, static_cast(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetZlib } }, + { "trace"_s, static_cast(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetTrace } }, +}; + +static const struct HashTable processBindingConstantsTable = + { 5, 15, false, nullptr, processBindingConstantsTableValues, processBindingConstantsTableIndex }; -- cgit v1.2.3