-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpression.h
225 lines (167 loc) · 4.14 KB
/
Expression.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
#ifndef BLANG_EXPRESSION_H_
#define BLANG_EXPRESSION_H_
#include <string>
#include <map>
#include <vector>
#include "RefCount.h"
#include "Type.h"
class Lexer;
namespace QLang
{
class Expression : public Statement
{
public:
static Expression *Parse( Lexer &l, Scope *scope, char terminal = ';' );
static Expression *ParseLValue( Lexer &l, Scope *scope );
static Expression *ParseRValue( Lexer &l, Scope *scope );
protected:
};
class WhileStatement : public Statement
{
public:
static WhileStatement *Parse( Lexer &l, Scope *scope );
protected:
WhileStatement() {}
private:
SmartPtr<Expression> mLoopExpression;
SmartPtr<Statement> mLoopStatement;
};
class ForStatement : public Statement
{
public:
static ForStatement *Parse( Lexer &l, Scope *scope );
protected:
ForStatement() {}
private:
SmartPtr<Expression> mInitialExpression;
SmartPtr<Expression> mTestExpression;
SmartPtr<Expression> mIterationExpression;
SmartPtr<Statement> mStatement;
};
class IfStatement : public Statement
{
public:
static IfStatement *Parse( Lexer &l, Scope *scope );
protected:
IfStatement() {}
private:
SmartPtr<Expression> mIfExpression;
SmartPtr<Statement> mStatement;
SmartPtr<Statement> mElseStatement;
};
class ReturnStatement : public Statement
{
public:
static ReturnStatement *Parse( Lexer &l, Scope *scope );
protected:
ReturnStatement() {}
private:
SmartPtr<Expression> mExpression;
};
class BinaryExpression : public Expression
{
public:
BinaryExpression *ParseAssignment( Lexer &l, Scope *scope );
BinaryExpression *ParseArithmatic( Lexer &l, Scope *scope );
private:
};
class ConstExpression : public Expression
{
public:
static ConstExpression *Parse( Lexer &l, Scope *scope );
protected:
ConstExpression() {}
private:
SmartPtr<Type> mType;
};
class ConstInteger : public ConstExpression
{
public:
ConstInteger( int64_t value ) : mValue( value ) {}
private:
int64_t mValue;
};
class ConstFloat : public ConstExpression
{
public:
ConstFloat( double value ) : mValue( value ) {}
private:
double mValue;
};
class ConstString : public ConstExpression
{
public:
ConstString( std::string value ) : mValue( value ) {}
private:
std::string mValue;
};
class ConstChar : public ConstExpression
{
public:
static ConstChar *Parse( Lexer &l, Scope *scope );
protected:
ConstChar() {}
private:
uint16_t mValue;
};
class VariableDeclaration : public Statement
{
public:
static VariableDeclaration *Parse( Lexer &l, Scope *s );
private:
struct DeclData {
SmartPtr<VariableDefinition> mVaribale;
SmartPtr<Expression> mInitialValue;
};
std::vector<DeclData> mVariables;
};
class VariableExpression : public Expression
{
public:
VariableExpression( VariableDefinition *def ) : mVariable( def ) {}
static VariableExpression *Parse( Lexer &l, Scope *scope );
protected:
VariableExpression() {}
private:
SmartPtr<VariableDefinition> mVariable;
};
class CallExpression : public Expression
{
public:
static CallExpression *Parse( Lexer &l, Scope *scope );
protected:
CallExpression( FunctionDefinition *def ) : mFunction( def ) {}
private:
SmartPtr<FunctionDefinition> mFunction;
std::vector<SmartPtr<Expression> > mParams;
};
class Block : public Statement
{
public:
static Block *Parse( Lexer &l, Scope *block_scope );
private:
SmartPtr<Scope> mScope;
std::vector<SmartPtr<Statement> > mStatementList;
};
class AssignmentExpression : public Expression
{
public:
AssignmentExpression( std::string operation, VariableDefinition *var, Expression *value ) :
mOperation( operation ), mVariable( var ), mValue( value ) {}
private:
std::string mOperation;
SmartPtr<VariableDefinition> mVariable;
SmartPtr<Expression> mValue;
};
class OperationsExpression : public Expression
{
public:
OperationsExpression( std::string operation, Expression *op1, Expression *op2 ) :
mOperation( operation ), mOp1( op1 ), mOp2( op2 ) {}
private:
std::string mOperation;
SmartPtr<Expression> mOp1;
SmartPtr<Expression> mOp2;
};
};
#endif // BLANG_EXPRESSION_H_