aboutsummaryrefslogtreecommitdiff
path: root/src/typecheck.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 13:18:07 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 13:18:07 -0400
commit788922fa2437c5b680b57d8adaaac9012fd5aba4 (patch)
treea783a98dcb059fb99314f01c99d9227a22cac299 /src/typecheck.h
parentfc77662f3ac99e50f9b9fe17bd6a44b04bb3f558 (diff)
Code cleanup
Diffstat (limited to 'src/typecheck.h')
-rw-r--r--src/typecheck.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/typecheck.h b/src/typecheck.h
index 6f25fd1e..b2be77bf 100644
--- a/src/typecheck.h
+++ b/src/typecheck.h
@@ -25,7 +25,6 @@ PUREFUNC bool can_be_mutated(env_t *env, ast_t *ast);
type_t *parse_type_string(env_t *env, const char *str);
type_t *get_method_type(env_t *env, ast_t *self, const char *name);
PUREFUNC bool is_constant(env_t *env, ast_t *ast);
-Table_t *get_arg_bindings(env_t *env, arg_t *spec_args, arg_ast_t *call_args, bool promotion_allowed);
bool is_valid_call(env_t *env, arg_t *spec_args, arg_ast_t *call_args, bool promotion_allowed);
PUREFUNC bool can_compile_to_type(env_t *env, ast_t *ast, type_t *needed);