diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-24 21:20:44 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-24 21:20:44 -0400 |
| commit | 0cfae753aa131f949253f3fba1e3a36c2bde6ac0 (patch) | |
| tree | d1403a97d7e86f547f8e6ca9994095f31c37d2a2 /src/ast.h | |
| parent | 76f80f80ff1788af96ae87fa909c130336d5399b (diff) | |
Revert "Deprecate `defer`"
This reverts commit 7e3e245f6809946ea06ef1998bcabb7e0902fbd7.
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -262,6 +262,7 @@ typedef enum { Skip, Stop, Pass, + Defer, Return, StructDef, EnumDef, @@ -407,6 +408,9 @@ struct ast_s { struct { } Pass; struct { + ast_t *body; + } Defer; + struct { ast_t *value; } Return; struct { |
