Generates llvm assembly code for additions :-)
[ozulis.git] / src / ast / type-checker-visitor.hh
blob9399dbef78fc50b2042fd1de3c63b3487a847c19
1 #ifndef AST_TYPE_CHECKER_VISITOR_HH
2 # define AST_TYPE_CHECKER_VISITOR_HH
4 # include <ast/browse-visitor.hh>
6 namespace ast
8 /// @defgroup Visitors
9 /**
10 * @brief Check that all expressions are correct (type)
11 * @ingroup Visitors
13 class TypeCheckerVisitor : public BrowseVisitor
15 public:
16 TypeCheckerVisitor();
17 virtual ~TypeCheckerVisitor();
21 #endif /* !AST_TYPE_CHECKER_VISITOR_HH */