summaryrefslogtreecommitdiffhomepage
path: root/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/ast.h b/ast.h
index 6f2b12c..ecbd763 100644
--- a/ast.h
+++ b/ast.h
@@ -20,7 +20,6 @@
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
-#include <setjmp.h>
#ifdef JSONC
#include <json.h>
@@ -88,13 +87,9 @@ struct ut_state {
struct {
enum ut_error_type code;
union {
- struct {
- size_t off;
- char *message;
- } exception;
+ struct json_object *exception;
uint64_t tokens[2];
} info;
- jmp_buf jmp;
} error;
struct {
struct json_object **scope;