mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 03:32:37 +00:00
expr as type; {N}bool is still causing problems
This commit is contained in:
@@ -70,12 +70,6 @@ void print_ast(AstNode *node, isize indent) {
|
||||
print_ast(node->IndexExpr.expr, indent+1);
|
||||
print_ast(node->IndexExpr.index, indent+1);
|
||||
break;
|
||||
case AstNode_CastExpr:
|
||||
print_indent(indent);
|
||||
gb_printf("(cast)\n");
|
||||
print_ast(node->CastExpr.type, indent+1);
|
||||
print_ast(node->CastExpr.expr, indent+1);
|
||||
break;
|
||||
case AstNode_DerefExpr:
|
||||
print_indent(indent);
|
||||
gb_printf("(deref)\n");
|
||||
|
||||
Reference in New Issue
Block a user