aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/bindings/ProcessBindingConstants.lut.h
blob: 4ad86860d7d2d02c6cb3cb1455a4e25d36519540 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetOs } },
   { "fs"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetFs } },
   { "crypto"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetCrypto } },
   { "zlib"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetZlib } },
   { "trace"_s, static_cast<unsigned>(PropertyAttribute::PropertyCallback), NoIntrinsic, { HashTableValue::LazyPropertyType, processBindingConstantsGetTrace } },
};

static const struct HashTable processBindingConstantsTable =
    { 5, 15, false, nullptr, processBindingConstantsTableValues, processBindingConstantsTableIndex };
-5/+0 2022-03-31Allow a little leeway when HMRGravatar Jarred Sumner 1-1/+2 2022-03-31Fix more infinite loopsGravatar Jarred Sumner 1-2/+2 2022-03-31Bugfixes to how we build WebCore codeGravatar Jarred Sumner 29-170/+384 2022-03-31[bun dev] Re-create the shared buffer for each websocketGravatar Jarred Sumner 1-6/+5 2022-03-31[bun dev] Improve HMR reliability when filesystem is slow or reading large filesGravatar Jarred Sumner 2-19/+68 2022-03-31Fix possible infinite loopsGravatar Jarred Sumner 1-3/+3 2022-03-30Update bindings.cppGravatar Jarred Sumner 1-0/+24 2022-03-30[bun.js] Support `file://` URLs in node fsGravatar Jarred Sumner 9-6/+102 2022-03-30Bump target next version to 12.1.3Gravatar Jarred Sumner 1-1/+1 2022-03-30Add test for Bun.hash that runs it with a Uint8ArrayGravatar Jarred Sumner 1-8/+16