diff options
| author | Cori Barker <coribarker2@gmail.com> | 2026-03-07 18:33:21 +0000 |
|---|---|---|
| committer | Cori Barker <coribarker2@gmail.com> | 2026-03-07 18:33:21 +0000 |
| commit | 50a51df0404ee4f057fbc19657672d1c7d3eef68 (patch) | |
| tree | 9cb9ed4572a357448f2b78c4ac0add7eaf6a1e7e /include/parser.hpp | |
| parent | 6761fdd434a7e54551fe28398361f9eed5268406 (diff) | |
removed implementations of symbol table related classes, need to fix the parser to use the new AST node classes then i can write the symbol table classes and refactor the lexer and parser to use the symbol table
Diffstat (limited to 'include/parser.hpp')
| -rw-r--r-- | include/parser.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/parser.hpp b/include/parser.hpp index f986ce2..6ec505e 100644 --- a/include/parser.hpp +++ b/include/parser.hpp @@ -1,7 +1,7 @@ #pragma once -#include "lexer/token.hpp" -#include "parser/ast_node.hpp" +#include "token.hpp" +#include "ast_node.hpp" #include <vector> |
