diff options
author | 2023-08-21 01:30:01 -0700 | |
---|---|---|
committer | 2023-08-21 01:30:01 -0700 | |
commit | c13a27121c175cd7280881640de97fe8a9cb5bc4 (patch) | |
tree | 3b38477bf302268d1b2de5d3c818d937a3bacce4 /src/bun.js/node/node.classes.ts | |
parent | 8c23e77e992e63fe8e492f84de548d899a2d26cb (diff) | |
download | bun-c13a27121c175cd7280881640de97fe8a9cb5bc4.tar.gz bun-c13a27121c175cd7280881640de97fe8a9cb5bc4.tar.zst bun-c13a27121c175cd7280881640de97fe8a9cb5bc4.zip |
Fix BigIntStats generated class
cc @paperdave, code generator script misses a constructor decl when this isn't true
Diffstat (limited to 'src/bun.js/node/node.classes.ts')
-rw-r--r-- | src/bun.js/node/node.classes.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/node/node.classes.ts b/src/bun.js/node/node.classes.ts index bf9a4bcde..a8d2e08d7 100644 --- a/src/bun.js/node/node.classes.ts +++ b/src/bun.js/node/node.classes.ts @@ -200,7 +200,7 @@ export default [ }), define({ name: "BigIntStats", - construct: false, + construct: true, finalize: true, klass: {}, JSType: "0b11101110", |