-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathast.h
63 lines (61 loc) · 1.23 KB
/
ast.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef AST_H
#define AST_H
#include <string>
#include <utility>
#include <vector>
class ast
{
public:
struct tree
{
static int counter;
~tree()
{
delete right;
delete left;
for (const auto& a : args)
{
delete a;
}
counter--;
}
tree* left;
tree* right;
std::vector<tree*> args;
std::string key;
enum _operation
{
EMPTY,
DOT /* . */,
NOT /* ! */,
EXEC /* () */,
MAKE /* = */,
PLUS /* + */,
MINUS /* - */,
MULTIPLY /* * */,
DIVISION /* / */,
FN /* function */,
IF /* if */,
WHILE /* while */,
MORE /* > */,
LESS /* < */,
MORE_EQUAL /* >= */,
EQUAL /* == */,
LESS_EQUAL /* <= */,
NOT_EQUAL /* != */,
AND /* && */,
OR /* || */,
PLUS_EQUAL /* += */,
MINUS_EQUAL /* -= */,
MULTIPLY_EQUAL /* *= */,
DIVISION_EQUAL /* /= */
}operation;
tree(_operation __operation, std::string _key, std::vector<tree*> _args = {}, tree* _left = nullptr, tree* _right = nullptr);;
};
static tree* analysis(const std::vector<std::string>&);
static tree* find_method(std::string raw);
static std::vector<std::string> split(const std::string&);
static bool find_start_key(const std::string&);
static bool find_end_key(const std::string&);
};
#endif // AST_H