aboutsummaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-10-05 18:05:07 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-10-05 18:05:07 -0400
commitc74fba540448f1d4b1aec4de8f3d9ffc395fdde0 (patch)
tree67f2f62e2ccf1889ebbeef725a6782b8ba9f5912 /src/ast.h
parent398d2cab6988e20c59e7037ff7ef551540339abb (diff)
Deprecate `deserialize` keyword and `.serialized()` method
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ast.h b/src/ast.h
index 60cd9077..93723dbb 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -274,7 +274,6 @@ typedef enum {
Assert,
Use,
InlineCCode,
- Deserialize,
ExplicitlyTyped,
} ast_e;
#define NUM_AST_TAGS (ExplicitlyTyped + 1)
@@ -454,10 +453,6 @@ struct ast_s {
type_ast_t *type_ast;
} InlineCCode;
struct {
- ast_t *value;
- type_ast_t *type;
- } Deserialize;
- struct {
ast_t *ast;
struct type_s *type;
} ExplicitlyTyped;