summaryrefslogtreecommitdiff
path: root/src/sys/include/os/np.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-03 02:58:19 -0400
committerIan Moffett <ian@osmora.org>2025-10-03 02:58:19 -0400
commit5ac96ca0f277c447254bcc50f98457c779d59dd6 (patch)
tree2e360d012276132892c6ae0cc3b2b2c962039915 /src/sys/include/os/np.h
parent8bd72a9b6254cf4f52977d3869f682728d1f9f3e (diff)
np: Remove deprecated ast_root field
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/os/np.h')
-rw-r--r--src/sys/include/os/np.h2
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;