-
Notifications
You must be signed in to change notification settings - Fork 1
/
ast.h
357 lines (279 loc) · 9.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#pragma once
#include <vector>
#include <map>
#include "tokens.h"
using std::vector;
using std::map;
namespace ast {
class Node {
public:
virtual ~Node() = default;
};
class Identifier : public Node {
public:
explicit Identifier(string name) : m_name(std::move(name)) {
}
[[nodiscard]] const string& name() const {
return m_name;
}
private:
string m_name;
};
class Expression : public Node {
};
class Statement : public Node {
};
class Code: public Node {
public:
Code(vector<unique<Statement>> statements) : m_statements(std::move(statements)) {
// Left blank intentionally
}
[[nodiscard]] const vector<unique<Statement>>& statements() const {
return m_statements;
};
public:
vector<unique<Statement>> m_statements;
};
class AssignmentOperator {
public:
enum class Type {
PLUS,
MINUS,
STAR,
SLASH,
CARET,
PERCENTAGE,
QUESTION
};
explicit AssignmentOperator(Type type) : m_type(type) {
}
private:
Type m_type;
};
class EvaluateExpressionStatement : public Statement {
public:
explicit EvaluateExpressionStatement(unique_ptr<Expression> expression)
: m_expression(std::move(expression)) {
// Left blank intentionally
}
[[nodiscard]] const unique_ptr<Expression>& expression() const {
return m_expression;
}
private:
unique_ptr<Expression> m_expression;
};
class AssignmentStatement : public Statement {
public:
explicit AssignmentStatement(Identifier variable, unique_ptr<Expression> type, unique_ptr<Expression> expression)
: m_variable(std::move(variable)), m_type(type), m_expression(std::move(expression)) {
// Left blank intentionally
}
[[nodiscard]] const Identifier& variable() const {
return m_variable;
}
[[nodiscard]] const unique_ptr<Expression>& value() const {
return m_value;
}
private:
Identifier m_variable;
unique_ptr<Expression> m_type;
unique_ptr<Expression> m_value;
};
class OperationAssignmentStatement : public Statement {
public:
explicit OperationAssignmentStatement(Identifier variable, AssignmentOperator op, unique_ptr<Expression> expression)
: m_variable(std::move(variable)), m_op(std::move(op)), m_expression(std::move(expression)) {
// Left blank intentionally
}
[[nodiscard]] const AssignmentOperator& variable() const {
return m_variable;
}
[[nodiscard]] const Identifier& op() const {
return m_op;
}
[[nodiscard]] const unique_ptr<Expression>& value() const {
return m_value;
}
private:
Identifier m_variable;
AssignmentOperator m_op;
unique_ptr<Expression> m_value;
};
class IfElseStatement : public Statement {
public:
IfElseStatement(vector<ConditionalCode> ifCodes, Code elseCode)
: m_ifCodes(std::move(ifCodes)), m_elseCode(std::move(elseCode)) {
// Left blank intentionally
}
[[nodiscard]] const vector<ConditionalCode>& ifCodes() const {
return m_ifCodes;
}
[[nodiscard]] const Code& elseCode() const {
return m_elseCode;
}
struct ConditionalCode {
Expression condition;
Code code;
};
private:
vector<ConditionalCode> m_ifCodes;
Code m_elseCode;
};
class ForLoopStatement : public Statement {
public:
ForLoopStatement(Identifier itemVariable, Expression iterable, Code code):
m_itemVariable(std::move(itemVariable)), m_iterable(std::move(iterable)), m_code(std::move(code)) {
// Left blank intentionally
}
[[nodiscard]] const Identifier& itemVariable() const {
return m_itemVariable;
}
[[nodiscard]] const Expression& iterable() const {
return m_iterable;
}
[[nodiscard]] const Code& code() const {
return m_code;
}
private:
Identifier m_itemVariable;
Expression m_iterable;
Code m_code;
};
class VariableAssignmentStatement: public Statement {
public:
VariableAssignmentStatement(Identifier identifier,
vector<ArgumentDefinition> compileArgs,
vector<ArgumentDefinition> args,
Code code)
: m_identifier(std::move(identifier)),
m_compileArgs(std::move(compileArgs)),
m_args(std::move(args)),
m_code(std::move(code)) {
// Left blank intentionally
}
[[nodiscard]] const Identifier& identifier() const {
return m_identifier;
}
[[nodiscard]] const vector<ArgumentDefinition>& compileArgs() const {
return m_compileArgs;
}
[[nodiscard]] const vector<ArgumentDefinition>& args() const {
return m_args;
}
[[nodiscard]] const Code& code() const {
return m_code;
}
private:
Identifier m_identifier;
vector<ArgumentDefinition> m_compileArgs;
vector<ArgumentDefinition> m_args;
Code m_code;
};
class WhileStatement : public Statement {
public:
WhileStatement(Expression condition, Code code)
: m_condition(std::move(condition)), m_code(std::move(code)) {
// Left blank intentionally
}
[[nodiscard]] const Expression& condition() const {
return m_condition;
}
[[nodiscard]] const Code& code() const {
return m_code;
}
private:
Expression m_condition;
Code m_code;
};
class ArgumentDefinition : public Node {
public:
ArgumentDefinition(Identifier name, Expression type)
: name(std::move(name)), type(std::move(type)) {
// Left blank intentionally
}
[[nodiscard]] const Identifier& name() const {
return m_name;
}
[[nodiscard]] const Expression& type() const {
return m_type;
}
private:
Identifier m_name;
Expression m_type;
};
class FunctionDefinitionStatement: public Statement {
public:
FunctionDefinitionStatement(Identifier identifier,
vector<ArgumentDefinition> compileArgs,
vector<ArgumentDefinition> args,
Code code)
: m_identifier(std::move(identifier)),
m_compileArgs(std::move(compileArgs)),
m_args(std::move(args)),
m_code(std::move(code)) {
// Left blank intentionally
}
[[nodiscard]] const Identifier& identifier() const {
return m_identifier;
}
[[nodiscard]] const vector<ArgumentDefinition>& compileArgs() const {
return m_compileArgs;
}
[[nodiscard]] const vector<ArgumentDefinition>& args() const {
return m_args;
}
[[nodiscard]] const Code& code() const {
return m_code;
}
private:
Identifier m_identifier;
vector<ArgumentDefinition> m_compileArgs;
vector<ArgumentDefinition> m_args;
Code m_code;
};
class ClassDefinitionStatement;
class ClassMethodDefinitionStatement : public Statement {
public:
explicit ClassMethodDefinitionStatement(ClassDefinitionStatement& cls, FunctionDefinitionStatement function)
: m_class(cls), m_function(std::move(function)) {
}
[[nodiscard]] const ClassDefinitionStatement& getClass() const {
return m_class;
}
[[nodiscard]] const FunctionDefinitionStatement& getClass() const {
return m_function;
}
private:
ClassDefinitionStatement& m_class;
FunctionDefinitionStatement m_function;
};
class ClassPropertyDefinitionStatement : public Statement {
public:
explicit ClassMethodDefinitionStatement(ClassDefinitionStatement& cls, FunctionDefinitionStatement function)
: m_class(cls), m_function(std::move(function)) {
}
[[nodiscard]] const ClassDefinitionStatement& getClass() const {
return m_class;
}
[[nodiscard]] const FunctionDefinitionStatement& getClass() const {
return m_function;
}
private:
ClassDefinitionStatement& m_class;
FunctionDefinitionStatement m_function;
};
class ClassDefinitionStatement : public Statement {
public:
explicit ClassDefinitionStatement(vector<ClassMethodDefinitionStatement> methods, vector<>) {
}
private:
};
class ClassDefinitionStatementBuilder final {
public:
ClassDefinitionStatementBuilder() {
}
};
class TraitDefinitionStatement : public Statement {
public:
};
}