pub const MAX_EXPR_DEPTH: usize = 64;
Maximum parenthesis/recursion depth inside one expression. Bounds nom’s recursion during parsing (a ((((…)))) bomb would otherwise overflow the stack long before node counting runs).
((((…))))