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
|
package Compiler;
import java.util.List;
abstract class Statement {
static class MainFunction extends Statement{
MainFunction(Statement block){
this.block = block;
}
final Statement block;
@Override
public String getStatmentType() {
return "main";
}
}
static class Function extends Statement{
Function(Token name,Statement block,List<Expression> arguments,List<String> argumentTypes,String returnType){
this.block=block;
this.arguments=arguments;
this.returnType=returnType;
this.argumentTypes=argumentTypes;
this.name=name;
}
final Statement block;
final List<Expression> arguments;
final List<String> argumentTypes;
final String returnType;
final Token name;
@Override
public String getStatmentType() {
return "function";
}
}
static class FunctionDeclaration extends Statement{
FunctionDeclaration(Token name,List<String> argumentTypes,String returnType){
this.returnType=returnType;
this.argumentTypes=argumentTypes;
this.name=name;
}
final List<String> argumentTypes;
final String returnType;
final Token name;
@Override
public String getStatmentType() {
return "functionDec";
}
}
static class ReturnStatement extends Statement{
ReturnStatement(Expression returnValue){
this.returnValue=returnValue;
}
final Expression returnValue;
@Override
public String getStatmentType() {
return "return";
}
}
static class ExpressionStatement extends Statement{
ExpressionStatement(Expression expr){
this.expr = expr;
}
final Expression expr;
@Override
public String getStatmentType() {
return "exprStmt";
}
}
static class BlockStatement extends Statement{
BlockStatement(List<Statement> statements){
this.statements=statements;
}
final List<Statement> statements;
@Override
public String getStatmentType() {
return "block";
}
}
static class IfStatement extends Statement{
IfStatement(Expression condition, Statement ifBlock,Statement elseBlock){
this.condition=condition;
this.ifBlock=ifBlock;
this.elseBlock=elseBlock;
}
final Expression condition;
final Statement ifBlock;
final Statement elseBlock;
@Override
public String getStatmentType() {
return "ifStmt";
}
}
static class DoStatement extends Statement{
DoStatement(Expression variable, Expression start,Expression stop,Expression step,Statement codeBlock){
this.variable=variable;
this.start=start;
this.stop=stop;
this.step=step;
this.codeBlock=codeBlock;
}
final Expression variable;
final Expression start;
final Expression stop;
final Expression step;
final Statement codeBlock;
@Override
public String getStatmentType() {
return "doStmt";
}
}
static class DoWhileStatement extends Statement{
DoWhileStatement(Expression condition,Statement codeBlock){
this.condition=condition;
this.codeBlock=codeBlock;
}
final Expression condition;
final Statement codeBlock;
@Override
public String getStatmentType() {
return "dowhileStmt";
}
}
static class VariableDeclaration extends Statement{
VariableDeclaration(Token name,String type){
this.name=name;
this.type=type;
}
final Token name;
final String type;
@Override
public String getStatmentType() {
return "varDec";
}
}
static class StringDeclaration extends Statement{
StringDeclaration(Token name,Expression length){
this.name=name;
this.length=length;
}
final Token name;
final Expression length;
@Override
public String getStatmentType() {
return "stringDec";
}
}
static class ArrayDeclaration extends Statement{
ArrayDeclaration(Token name,String type,List<Expression> dimensions){
this.name=name;
this.dimensions=dimensions;
this.type=type;
}
final String type;
final Token name;
final List<Expression> dimensions;
@Override
public String getStatmentType() {
return "arrayDec";
}
}
static class PrintStatement extends Statement{
PrintStatement(List<Expression> exprList){
this.exprList=exprList;
}
final List<Expression> exprList;
@Override
public String getStatmentType() {
return "print";
}
}
public abstract String getStatmentType();
}
|