#ifndef AST_HPP #define AST_HPP #include "base.hpp" #include "statement.hpp" #include "function.hpp" #include "declaration.hpp" #include "expression.hpp" #include "primitives.hpp" #include "ast_top.hpp" ast_Top *parseAST(); #endif