diff options
author | 2022-11-10 00:02:16 -0800 | |
---|---|---|
committer | 2022-11-10 00:02:16 -0800 | |
commit | b62c45fea3c21138e7c61ad51c740c5c008ba4c4 (patch) | |
tree | 923fc11ee99a05c9eb2e7eded9a47919329d9ec0 | |
parent | 7deca69820bcae02414984edf0f2138eab587436 (diff) | |
download | bun-b62c45fea3c21138e7c61ad51c740c5c008ba4c4.tar.gz bun-b62c45fea3c21138e7c61ad51c740c5c008ba4c4.tar.zst bun-b62c45fea3c21138e7c61ad51c740c5c008ba4c4.zip |
Increase stackframe count
-rw-r--r-- | src/bun.js/bindings/exports.zig | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bun.js/bindings/exports.zig b/src/bun.js/bindings/exports.zig index f534a3677..e6ccc039e 100644 --- a/src/bun.js/bindings/exports.zig +++ b/src/bun.js/bindings/exports.zig @@ -774,7 +774,7 @@ pub const ZigException = extern struct { pub const namespace = shim.namespace; pub const Holder = extern struct { - const frame_count = 24; + const frame_count = 32; pub const source_lines_count = 6; source_line_numbers: [source_lines_count]i32, source_lines: [source_lines_count]ZigString, @@ -2555,9 +2555,7 @@ pub const ZigConsoleClient = struct { _: usize, // args _: *ScriptArguments, - ) callconv(.C) void { - - } + ) callconv(.C) void {} pub fn profile( // console _: ZigConsoleClient.Type, |