diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 14:29:40 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 14:29:40 -0500 |
| commit | 50fedc8f44259f2e08add4dceebb5e12c6232e90 (patch) | |
| tree | 0f634ac1ea487803de1ac9262bf95b24e333cfe8 /typecheck.h | |
| parent | a4c3faa525dde0eb8b79cc8fa7a5dba15945b8e4 (diff) | |
Fixing up structs
Diffstat (limited to 'typecheck.h')
| -rw-r--r-- | typecheck.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/typecheck.h b/typecheck.h index 1f1f3552..a44e658b 100644 --- a/typecheck.h +++ b/typecheck.h @@ -15,5 +15,7 @@ bool is_discardable(env_t *env, ast_t *ast); type_t *get_namespace_type(env_t *env, ast_t *namespace_ast, type_t *type); type_t *get_file_type(env_t *env, const char *path); type_t *get_function_def_type(env_t *env, ast_t *ast); +type_t *get_arg_type(env_t *env, arg_t *arg); +type_t *get_arg_ast_type(env_t *env, arg_ast_t *arg); // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
