aboutsummaryrefslogtreecommitdiff
path: root/typecheck.c
diff options
context:
space:
mode:
Diffstat (limited to 'typecheck.c')
-rw-r--r--typecheck.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/typecheck.c b/typecheck.c
index 33e2b122..37a222fe 100644
--- a/typecheck.c
+++ b/typecheck.c
@@ -102,6 +102,13 @@ void bind_statement(env_t *env, ast_t *statement)
set_binding(env, Match(decl->var, Var)->name, new(binding_t, .type=type));
break;
}
+ case StructDef: {
+ auto def = Match(statement, StructDef);
+ type_t *type = Table_str_get(env->types, def->name);
+ type_t *constructor_t = Type(FunctionType, .args=Match(type, StructType)->fields, .ret=type);
+ set_binding(env, def->name, new(binding_t, .type=constructor_t));
+ break;
+ }
default: break;
}
}