diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-03 02:58:19 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-03 02:58:19 -0400 |
commit | 5ac96ca0f277c447254bcc50f98457c779d59dd6 (patch) | |
tree | 2e360d012276132892c6ae0cc3b2b2c962039915 /src/sys | |
parent | 8bd72a9b6254cf4f52977d3869f682728d1f9f3e (diff) |
np: Remove deprecated ast_root field
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/include/os/np.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sys/include/os/np.h b/src/sys/include/os/np.h index 9dba651..fb4d58b 100644 --- a/src/sys/include/os/np.h +++ b/src/sys/include/os/np.h @@ -64,7 +64,6 @@ typedef enum { * @line_no: Current line number * @piir_stack: Bytecode stack * @lex_st: Lexer state - * @ast_root: Parse tree * @ccache: Character cache (temporary store for lexer) * @in_func: Is set if we are inside a function * @begin_depth: How deep in "begin" we are @@ -76,7 +75,6 @@ struct np_work { struct piir_stack *piir_stack; struct lexer_state lex_st; struct ptrbox *work_mem; - struct ast_node *ast_root; char ccache; uint8_t in_func : 1; uint8_t begin_depth; |