syntactic_ast: add node for if expressions
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2026-01-07 18:03:28 +03:00
parent edc9d8b9e6
commit 54c48ddf0e
3 changed files with 20 additions and 1 deletions

View File

@@ -28,6 +28,8 @@ type _ t =
| CondClause : expression t * expression t -> clause t
| Cond : clause t list -> expression t
| If : expression t * expression t * expression t -> expression t
| Var : symbol -> expression t
| Apply : expression t * expression t list -> expression t