aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/node/node.classes.ts
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-08-21 01:30:01 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-08-21 01:30:01 -0700
commitc13a27121c175cd7280881640de97fe8a9cb5bc4 (patch)
tree3b38477bf302268d1b2de5d3c818d937a3bacce4 /src/bun.js/node/node.classes.ts
parent8c23e77e992e63fe8e492f84de548d899a2d26cb (diff)
downloadbun-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.ts2
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",