diff options
author | Marvin Borner | 2021-08-07 23:39:21 +0200 |
---|---|---|
committer | Marvin Borner | 2021-08-07 23:39:21 +0200 |
commit | 51c4defc436c0d119941eb6d5b953d27b5b8e6f7 (patch) | |
tree | c90b6329b81a4c4715f7860cb3a6a7b1d3174e37 /inc/tokenize.h | |
parent | 55e5ec54eaef97e87efefc2294a5afaf8935566b (diff) |
Better error logging
Diffstat (limited to 'inc/tokenize.h')
-rw-r--r-- | inc/tokenize.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/tokenize.h b/inc/tokenize.h index d1a2931..f5e8600 100644 --- a/inc/tokenize.h +++ b/inc/tokenize.h @@ -28,6 +28,7 @@ enum token_type { struct token { enum token_type type; + struct ctx_location location; ctx_string string; }; |