-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResolver.cs
289 lines (249 loc) · 7.27 KB
/
Resolver.cs
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
namespace cslox;
public class Resolver : Expr.IVisitor<Lox.Void>, Stmt.IVisitor<Lox.Void>
{
private readonly Interpreter _interpreter;
private readonly List<Dictionary<string, bool>> _scopes = new();
private enum FunctionType
{
None,
Function,
Initializer,
Method
}
private enum ClassType
{
None,
Class,
Subclass
}
private FunctionType _currentFunction = FunctionType.None;
private ClassType _currentClass = ClassType.None;
public Resolver(Interpreter interpreter)
{
_interpreter = interpreter;
}
public void Resolve(List<Stmt?> statements)
{
foreach (var stmt in statements) Resolve(stmt);
}
private void Resolve(Stmt? stmt) => stmt?.Accept(this);
private void Resolve(Expr? expr) => expr?.Accept(this);
private void BeginScope()
{
_scopes.Add(new Dictionary<string, bool>());
}
private void EndScope()
{
_scopes.RemoveAt(_scopes.Count - 1);
}
private void Declare(Token token)
{
if (_scopes.Count == 0) return;
var scope = _scopes[^1];
if (scope.ContainsKey(token.Lexeme)) Lox.Error(token, "Already a variable with this name in this scope.");
scope.Add(token.Lexeme, false);
}
private void Define(Token token)
{
if (_scopes.Count == 0) return;
var scope = _scopes[^1];
if (scope.ContainsKey(token.Lexeme)) scope[token.Lexeme] = true;
else Lox.Error(token, "Variable has not been declared.");
}
private void ResolveLocal(Expr expr, Token name)
{
for (var i = _scopes.Count - 1; i >= 0; i--)
{
if (_scopes[i].ContainsKey(name.Lexeme))
{
_interpreter.Resolve(expr, _scopes.Count - 1 - i);
return;
}
}
}
private void ResolveFunction(Stmt.Function function, FunctionType type)
{
var enclosingFunction = _currentFunction;
_currentFunction = type;
BeginScope();
foreach (var param in function.Parameters)
{
Declare(param);
Define(param);
}
Resolve(function.Body);
EndScope();
_currentFunction = enclosingFunction;
}
public Lox.Void VisitAssignExpr(Expr.Assign expr)
{
Resolve(expr.Value);
ResolveLocal(expr, expr.Name);
return Lox.LoxVoid;
}
public Lox.Void VisitCallExpr(Expr.Call expr)
{
Resolve(expr.Callee);
foreach (var arg in expr.Arguments) Resolve(arg);
return Lox.LoxVoid;
}
public Lox.Void VisitGetExpr(Expr.Get expr)
{
Resolve(expr.Obj);
return Lox.LoxVoid;
}
public Lox.Void VisitBinaryExpr(Expr.Binary expr)
{
Resolve(expr.Left);
Resolve(expr.Right);
return Lox.LoxVoid;
}
public Lox.Void VisitGroupingExpr(Expr.Grouping expr)
{
Resolve(expr.Expression);
return Lox.LoxVoid;
}
public Lox.Void VisitLiteralExpr(Expr.Literal expr)
{
return Lox.LoxVoid;
}
public Lox.Void VisitLogicalExpr(Expr.Logical expr)
{
Resolve(expr.Left);
Resolve(expr.Right);
return Lox.LoxVoid;
}
public Lox.Void VisitSetExpr(Expr.Set expr)
{
Resolve(expr.Value);
Resolve(expr.Obj);
return Lox.LoxVoid;
}
public Lox.Void VisitSuperExpr(Expr.Super expr)
{
if (_currentClass == ClassType.None)
{
Lox.Error(expr.Key, "Can't use 'super' outside of a class.");
} else if (_currentClass != ClassType.Subclass)
{
Lox.Error(expr.Key, "Can't use 'super' in a class with no superclass.");
}
ResolveLocal(expr, expr.Key);
return Lox.LoxVoid;
}
public Lox.Void VisitThisExpr(Expr.This expr)
{
if (_currentClass == ClassType.None)
{
Lox.Error(expr.Key, "Can't use 'this' outside of a class.");
return Lox.LoxVoid;
}
ResolveLocal(expr, expr.Key);
return Lox.LoxVoid;
}
public Lox.Void VisitUnaryExpr(Expr.Unary expr)
{
Resolve(expr.Right);
return Lox.LoxVoid;
}
public Lox.Void VisitVariableExpr(Expr.Variable expr)
{
if (_scopes.Count != 0)
{
if (_scopes[^1].TryGetValue(expr.Name.Lexeme, out var value) && value == false)
Lox.Error(expr.Name, "Can't read local variable in its own initializer.");
}
ResolveLocal(expr, expr.Name);
return Lox.LoxVoid;
}
public Lox.Void VisitBlockStmt(Stmt.Block stmt)
{
BeginScope();
Resolve(stmt.Statements);
EndScope();
return Lox.LoxVoid;
}
public Lox.Void VisitClassStmt(Stmt.Class stmt)
{
var enclosingClass = _currentClass;
_currentClass = ClassType.Class;
Declare(stmt.Name);
Define(stmt.Name);
if (stmt.Superclass != null)
{
_currentClass = ClassType.Subclass;
if (stmt.Name.Lexeme.Equals(stmt.Superclass.Name.Lexeme)) Lox.Error(stmt.Superclass.Name, "A class can't inherit from itself.");
Resolve(stmt.Superclass);
BeginScope();
_scopes[^1]["super"] = true;
}
BeginScope();
_scopes[^1]["this"] = true;
foreach (var method in stmt.Methods)
{
var decl = FunctionType.Method;
if (method.Name.Lexeme.Equals("init"))
{
decl = FunctionType.Initializer;
}
ResolveFunction(method, decl);
}
EndScope();
if (stmt.Superclass != null) EndScope();
_currentClass = enclosingClass;
return Lox.LoxVoid;
}
public Lox.Void VisitExpressionStmt(Stmt.Expression stmt)
{
Resolve(stmt.Express);
return Lox.LoxVoid;
}
public Lox.Void VisitFunctionStmt(Stmt.Function stmt)
{
Declare(stmt.Name);
Define(stmt.Name);
ResolveFunction(stmt, FunctionType.Function);
return Lox.LoxVoid;
}
public Lox.Void VisitIfStmt(Stmt.If stmt)
{
Resolve(stmt.Condition);
Resolve(stmt.ThenBranch);
if (stmt.ElseBranch != null) Resolve(stmt.ElseBranch);
return Lox.LoxVoid;
}
public Lox.Void VisitPrintStmt(Stmt.Print stmt)
{
Resolve(stmt.Express);
return Lox.LoxVoid;
}
public Lox.Void VisitReturnStmt(Stmt.Return stmt)
{
if (_currentFunction == FunctionType.None) Lox.Error(stmt.Key, "Can't return from top-level code.");
if (stmt.Value != null)
{
if (_currentFunction == FunctionType.Initializer)
{
Lox.Error(stmt.Key, "Can't return a value from an initializer.");
}
Resolve(stmt.Value);
}
return Lox.LoxVoid;
}
public Lox.Void VisitVarStmt(Stmt.Var stmt)
{
Declare(stmt.Name);
if (stmt.Initializer != null)
{
Resolve(stmt.Initializer);
}
Define(stmt.Name);
return Lox.LoxVoid;
}
public Lox.Void VisitWhileStmt(Stmt.While stmt)
{
Resolve(stmt.Condition);
Resolve(stmt.Body);
return Lox.LoxVoid;
}
}