Match statements; Type System change (Type_Record for all sum and product types)

This commit is contained in:
Ginger Bill
2016-09-01 20:38:44 +01:00
parent ff6e21cb87
commit fa09d805e2
16 changed files with 1172 additions and 622 deletions

View File

@@ -16,7 +16,7 @@ void print_ast(AstNode *node, isize indent) {
break;
case AstNode_Ident:
print_indent(indent);
print_token(node->Ident.token);
print_token(node->Ident);
break;
case AstNode_ProcLit:
print_indent(indent);