aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-28 16:40:41 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-28 16:40:41 +0200
commitbf804fa1e18c717cec3944f5edea858a2f3a015d (patch)
treefa2a9c07f088fa2c1be97cb6e7d078b8eac7172f /src/ast.c
parent98c3d8fbc924c62e2be571ed71b22053b9e8baa3 (diff)
downloadfwd-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.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ast.c b/src/ast.c
index 17a4461..119f943 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -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;