pub(crate) fn rewrite_binary_call_balanced<F>(
src: &str,
name: &str,
make: F,
) -> StringExpand description
Generic paren-balanced rewriter for two-argument calls. Walks the
source, matches <name>( on a word boundary, finds the top-level
,, and replaces the whole call with the closure’s output.