This commit is contained in:
2013-06-01 17:00:39 +02:00
parent 6d2e40778c
commit c468356c57
7 changed files with 55 additions and 51 deletions

17
inc/AST/BinOp.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef BINOP_H
#define BINOP_H
#include <string>
enum class BinOp {
EQUALS,
LESS,
PLUS,
MINUS,
TIMES,
DIV
};
std::string binOpToString(BinOp op);
#endif // BINOP_H