BinOp
This commit is contained in:
17
inc/AST/BinOp.h
Normal file
17
inc/AST/BinOp.h
Normal 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
|
||||
Reference in New Issue
Block a user