diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-20 14:52:34 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-20 14:52:34 +0200 |
commit | 98c3d8fbc924c62e2be571ed71b22053b9e8baa3 (patch) | |
tree | 695c7877b7802cec60037ecf98052479c9bb06b0 /src/scope.c | |
parent | 0f5ce98342a7742c4e3af0dd33b5b642419d5286 (diff) | |
download | fwd-98c3d8fbc924c62e2be571ed71b22053b9e8baa3.tar.gz fwd-98c3d8fbc924c62e2be571ed71b22053b9e8baa3.zip |
add enough type checking to compile uniq.fwd
Diffstat (limited to 'src/scope.c')
-rw-r--r-- | src/scope.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scope.c b/src/scope.c index 869e0d6..a7dfa69 100644 --- a/src/scope.c +++ b/src/scope.c @@ -102,8 +102,8 @@ int scope_add_var(struct scope *scope, struct ast *var) { struct ast *exists = scope_find_symbol(scope, var_id(var)); if (exists) { - semantic_error(scope->fctx, var, "var redefined"); - semantic_info(scope->fctx, exists, "previously here"); + semantic_error(scope, var, "var redefined"); + semantic_info(scope, exists, "previously here"); return -1; } @@ -116,8 +116,8 @@ int scope_add_proc(struct scope *scope, struct ast *proc) assert(proc->k == AST_PROC_DEF); struct ast *exists = file_scope_find_symbol(scope, proc_id(proc)); if (exists) { - semantic_error(scope->fctx, proc, "proc redefined"); - semantic_info(scope->fctx, exists, "previously here"); + semantic_error(scope, proc, "proc redefined"); + semantic_info(scope, exists, "previously here"); return -1; } |