aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/ast.hpp
blob: 9d518161a136c390b67298cfb3d15bd908fec104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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