aboutsummaryrefslogtreecommitdiffhomepage
path: root/ast.c
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-15 19:45:48 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 19:45:48 +0900
commit70f3db84bb3e2f4d85da7392a112f6f82ce97152 (patch)
tree7eff3177bbf6433c475da9f7f07460352d41c85f /ast.c
parent4e784d3d5b757f1088d5774897898ca108e9d5d8 (diff)
downloadducc-70f3db84bb3e2f4d85da7392a112f6f82ce97152.tar.gz
ducc-70f3db84bb3e2f4d85da7392a112f6f82ce97152.tar.zst
ducc-70f3db84bb3e2f4d85da7392a112f6f82ce97152.zip
feat: implement conditional expression
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ast.c b/ast.c
index 8562088..6473d46 100644
--- a/ast.c
+++ b/ast.c
@@ -163,6 +163,7 @@ enum AstNodeKind {
AstNodeKind_assign_expr,
AstNodeKind_binary_expr,
AstNodeKind_break_stmt,
+ AstNodeKind_cond_expr,
AstNodeKind_continue_stmt,
AstNodeKind_deref_expr,
AstNodeKind_do_while_stmt,