Skip to content

Commit e6d77a9

Browse files
committed
stack size
1 parent c7fc64c commit e6d77a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/swc_ecma_utils/src/stack_size.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ pub fn maybe_grow<R, F: FnOnce() -> R>(red_zone: usize, stack_size: usize, callb
2525
///
2626
/// `maybe_grow` with default values.
2727
pub fn maybe_grow_default<R, F: FnOnce() -> R>(callback: F) -> R {
28-
maybe_grow(4 * 1024, 16 * 1024, callback)
28+
maybe_grow(8 * 1024, 32 * 1024, callback)
2929
}

0 commit comments

Comments
 (0)