diff options
Diffstat (limited to 'tiger-compiler/src/ast/exp.cc')
| -rw-r--r-- | tiger-compiler/src/ast/exp.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/exp.cc b/tiger-compiler/src/ast/exp.cc new file mode 100644 index 0000000..1c3ce32 --- /dev/null +++ b/tiger-compiler/src/ast/exp.cc @@ -0,0 +1,16 @@ +/** + ** \file ast/exp.cc + ** \brief Implementation of ast::Exp. + */ + +#include <ast/exp.hh> +#include <ast/visitor.hh> + +namespace ast +{ + Exp::Exp(const Location& location) + : Ast(location) + , Typable() + {} + +} // namespace ast |
