1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdarg.h>
#include <stdlib.h>

#include "error.h"
#include "lexer.h"

#include <utils/color.h>

void
error(const char *fmt, ...)
{
    setColor(BOLD);
    fprintfLoc(stderr, &token.loc, "");
    setColor(SAD);
    setColor(BOLD_RED);
    fprintf(stderr, " error: ");
    setColor(RED);

    va_list argp;
    va_start(argp, fmt);
    vfprintf(stderr, fmt, argp);
    va_end(argp);
    setColor(NORMAL);
    exit(1);
}

void
errorAt(struct Loc loc, const char *fmt, ...)
{
    setColor(BOLD);
    fprintfLoc(stderr, &token.loc, "");
    setColor(SAD);
    setColor(BOLD_RED);
    fprintf(stderr, " error: ");
    setColor(RED);

    va_list argp;
    va_start(argp, fmt);
    vfprintf(stderr, fmt, argp);
    va_end(argp);
    setColor(NORMAL);
    exit(1);
}