diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-05 21:02:26 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-05 21:02:26 -0800 |
commit | 5ecf1f46aae4994662bd8e3df189f8d60b49a304 (patch) | |
tree | 91b6a15d65c9e8d7a5e7ae87712830b1bf4f4eca /src/include/visitor.h | |
parent | 7ff373076c59af3ba166e5080b8ecead569d5a44 (diff) |
bind works for real, I think this works now
Diffstat (limited to 'src/include/visitor.h')
-rw-r--r-- | src/include/visitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/visitor.h b/src/include/visitor.h index 54f43f0..de73248 100644 --- a/src/include/visitor.h +++ b/src/include/visitor.h @@ -6,7 +6,7 @@ #include "./stack.h" typedef struct { - hash_table_t *symbol_table; + parser_t *p; hash_table_t *eval_table; stack_t *stack_frame; ast_t *root; |