syntactic_ast: added a node for set! expressions

This commit is contained in:
2026-01-07 18:13:55 +03:00
parent 54c48ddf0e
commit 0d731f29b3
2 changed files with 15 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ type _ t =
| Cond : clause t list -> expression t
| If : expression t * expression t * expression t -> expression t
| Set : string * expression t -> expression t
| Var : symbol -> expression t
| Apply : expression t * expression t list -> expression t