aboutsummaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ast.h b/src/ast.h
index 4f370e11..3beb6be2 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -150,6 +150,7 @@ typedef enum {
InlineCCode,
Deserialize,
Extend,
+ ExplicitlyTyped,
} ast_e;
struct ast_s {
@@ -338,6 +339,10 @@ struct ast_s {
const char *name;
ast_t *body;
} Extend;
+ struct {
+ ast_t *ast;
+ struct type_s *type;
+ } ExplicitlyTyped;
} __data;
};