aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/ast.hpp
blob: bb3e92fc924788f6253dcea381701897d3389c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef AST_HPP
#define AST_HPP

#include <vector>
#include <string>
#include <iostream>

#include "base.hpp"
#include "statement.hpp"
#include "function.hpp"
#include "declaration.hpp"
#include "expression.hpp"
#include "primitives.hpp"
#include "external.hpp"
#include "ast_top.hpp"

const BaseList* parseAST();

#endif