-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.d
268 lines (169 loc) · 4.69 KB
/
ast.d
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
module ast;
import common, printer, validation, intrange, interpreter;
@safe nothrow:
mixin template Visits ()
{
R visit (Var);
R visit (Missing);
R visit (Err);
R visit (Ident);
R visit (Assign);
R visit (Int);
R visit (OpApply);
}
interface AsiVisitorThrowing (R)
{
mixin Visits!();
}
interface AsiVisitor (R)
{
nothrow:
mixin Visits!();
}
mixin template Acceptors ()
{
override Asi accept (Interpreter v) { return v.visit(this); }
nothrow:
override void accept (AsiPrinter v) { v.visit(this); }
override void accept (NameValidator v) { return v.visit(this); }
override void accept (IntRange v) { return v.visit(this); }
}
private @property auto disable (T...) ()
{
auto res = "";
foreach (t; T)
{
immutable ts = "const(" ~ t.stringof ~ ")";
pragma (msg, ts);
res ~= "const nothrow pure override @disable @property " ~ ts
~ " as" ~ t.stringof ~ " () { return this; } ";
}
return res;
}
abstract class Asi
{
Asi accept (Interpreter);
nothrow:
debug
{
string typeName;
this () { typeName = typeid(this).name;}
}
void accept (AsiPrinter);
void accept (NameValidator);
void accept (IntRange);
enum castThis = q{ return cast(typeof(return))this; };
const pure @property:
// stm
const(Stm) asStm () { mixin(castThis); }
const(Var) asVar () { mixin(castThis); }
// exp
const(Exp) asExp () { mixin(castThis); }
const(Missing) asMissing () { mixin(castThis); }
const(Err) asErr () { mixin(castThis); }
const(Ident) asIdent () { mixin(castThis); }
const(Assign) asAssign () { mixin(castThis); }
const(Int) asInt () { mixin(castThis); }
const(OpApply) asOpApply () { mixin(castThis); }
}
abstract class Stm : Asi
{
mixin (disable!(typeof(this)));
// disable classes derived form Exp as they will always be null
const nothrow pure @disable override @property:
const(Exp) asExp () { return null; }
const(Missing) asMissing () { return null; }
const(Err) asErr () { return null; }
const(Ident) asIdent () { return null; }
const(Assign) asAssign () { return null; }
const(Int) asInt () { return null; }
const(OpApply) asOpApply () { return null; }
}
abstract class Exp : Asi
{
long min;
long max;
mixin (disable!(typeof(this)));
// disable classes derived form Stm as they will always be null
const nothrow pure @disable override @property:
const(Stm) asStm () { return null; }
const(Var) asVar () { return null; }
}
final class Var : Stm
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
Exp pExp;
this (Err err) { pExp = err; }
this (Ident ident) { pExp = ident; }
this (Assign ass) { pExp = ass; }
invariant () { assert (pExp && (pExp.asIdent || pExp.asAssign || pExp.asErr)); }
pure @property:
Exp exp () { return pExp; }
}
final class Missing : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
this () { }
}
final class Err : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
Asi asi;
this (Asi asi) { this.asi = asi; }
//invariant () { assert(asi); }
}
final class Ident : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
dstring name;
this (dstring name) { this.name = name; }
invariant () { assert(name.length); }
}
final class Assign : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
Ident ident;
Exp value;
this (Ident ident, Exp value) { this.ident = ident; this.value = value; }
invariant () { assert(ident); assert(value); }
}
final class Int : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
dstring asString;
long asLong;
this (long asLong) { this.asLong = asLong; }
this (dstring asString, long asLong)
{
this.asString = asString;
this.asLong = asLong;
}
}
final class OpApply : Exp
{
mixin Acceptors!();
mixin (disable!(typeof(this)));
nothrow:
dstring op;
Exp op1;
Exp op2;
this (dstring op, Exp op1, Exp op2)
{
this.op = op;
this.op1 = op1;
this.op2 = op2;
}
invariant () { assert(op.length && op1 && op2); }
}