diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-28 16:40:41 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-28 16:40:41 +0200 |
commit | bf804fa1e18c717cec3944f5edea858a2f3a015d (patch) | |
tree | fa2a9c07f088fa2c1be97cb6e7d078b8eac7172f /src/ast.c | |
parent | 98c3d8fbc924c62e2be571ed71b22053b9e8baa3 (diff) | |
download | fwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.tar.gz fwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.zip |
enough type checking for all examples to pass
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -549,6 +549,19 @@ void fix_closures(struct ast *root) } } +static bool special_auto_very_bad(struct type *a, struct type *b) +{ + /** @todo massive hack, accept 'auto' as a placeholder and match it + * against anything, will need to be fixed eventually */ + if (a->k == TYPE_ID && strcmp(a->id, "auto") == 0) + return true; + + if (b->k == TYPE_ID && strcmp(b->id, "auto") == 0) + return true; + + return false; +} + bool types_match(struct type *a, struct type *b) { if (!a && !b) @@ -560,6 +573,9 @@ bool types_match(struct type *a, struct type *b) if (!a && b) return false; + if (special_auto_very_bad(a, b)) + return true; + if (a->k != b->k) return false; |