aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ast.h b/src/ast.h
index 3c92eed..5f4367d 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -91,9 +91,11 @@ typedef enum {
AstNodeKind_assign_expr,
AstNodeKind_binary_expr,
AstNodeKind_break_stmt,
+ AstNodeKind_case_label,
AstNodeKind_cast_expr,
AstNodeKind_cond_expr,
AstNodeKind_continue_stmt,
+ AstNodeKind_default_label,
AstNodeKind_deref_expr,
AstNodeKind_do_while_stmt,
AstNodeKind_enum_def,
@@ -118,6 +120,7 @@ typedef enum {
AstNodeKind_struct_decl,
AstNodeKind_struct_def,
AstNodeKind_struct_member,
+ AstNodeKind_switch_stmt,
AstNodeKind_type,
AstNodeKind_typedef_decl,
AstNodeKind_unary_expr,