aboutsummaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/debug.c b/src/debug.c
index 734ce0e..0d11473 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -146,6 +146,19 @@ void type_error(struct file_ctx fctx, struct type *node,
va_end(args);
}
+void loc_error(struct file_ctx fctx, struct src_loc loc,
+ const char *fmt, ...)
+{
+ va_list args;
+ va_start(args, fmt);
+ struct src_issue issue;
+ issue.level = SRC_ERROR;
+ issue.loc = loc;
+ issue.fctx = fctx;
+ _issue(issue, fmt, args);
+ va_end(args);
+}
+
void semantic_warn(struct file_ctx fctx, struct ast *node, const char *fmt,
...)
{