diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-29 13:32:17 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-29 13:32:17 -0400 |
| commit | 43105107b9d1e985e9c182b904f2ac79b17fb460 (patch) | |
| tree | c2dbb1c0312d410a387d8da26a2475d862b5ddcf /src/ast.c | |
| parent | d8116c27f406ac4915aaa7cdae97fb73c9847c8a (diff) | |
Improvements to text and inline C code formatting/parsing
Diffstat (limited to 'src/ast.c')
| -rw-r--r-- | src/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -291,7 +291,7 @@ Text_t ast_to_sexp(ast_t *ast) { ")"); T(When, "(When ", ast_to_sexp(data.subject), when_clauses_to_sexp(data.clauses), optional_sexp("else", data.else_body), ")"); - T(Reduction, "(Reduction ", quoted_text(binop_method_name(data.op)), " ", ast_to_sexp(data.key), " ", + T(Reduction, "(Reduction ", quoted_text(binop_operator(data.op)), " ", ast_to_sexp(data.key), " ", ast_to_sexp(data.iter), ")"); T(Skip, "(Skip ", quoted_text(data.target), ")"); T(Stop, "(Stop ", quoted_text(data.target), ")"); |
