-
Notifications
You must be signed in to change notification settings - Fork 0
/
NestedExtendsError.cs
119 lines (102 loc) · 2.89 KB
/
NestedExtendsError.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
using System;
using System.Collections.Generic;
public class NestedExtendsError : IVisitor<object, object>
{
public int nestedExtendsCount = 0;
public object Visit(ExtendsNode node, object ctx)
{
if(nestedExtendsCount > 0) throw new NestedExtensionError(node.posStart, node.posEnd);
return null;
}
public object Visit(NumNode node, object ctx)
{
return null;
}
public object Visit(BoolNode node, object _)
{
return null;
}
public object Visit(BlockNode node, object ctx)
{
nestedExtendsCount += 1;
foreach(var item in node.block) item.Accept(this, ctx);
nestedExtendsCount -= 1;
return null;
}
public object Visit(BatchRenderNode node, object ctx)
{
foreach(var item in node.batch) item.Accept(this, ctx);
return null;
}
public object Visit(RenderNode node, object ctx)
{
return node.renderNode.Accept(this, ctx);
}
public object Visit(StrNode node, object ctx)
{
return null;
}
public object Visit(ListNode node, object ctx)
{
foreach(var item in node.list) item.Accept(this, ctx);
return null;
}
public object Visit(ObjectNode node, object ctx)
{
foreach(var kv in node.keyValueList)
{
kv.Item1.Accept(this, ctx);
kv.Item2.Accept(this, ctx);
}
return null;
}
public object Visit(AccessProperty node, object ctx)
{
node.node.Accept(this, ctx);
return null;
}
public object Visit(VarAccessNode node, object ctx)
{
return null;
}
public object Visit(BinOpNode node, object ctx)
{
node.left.Accept(this, ctx);
node.right.Accept(this, ctx);
return null;
}
public object Visit(ForNode forNode, object ctx)
{
forNode.iterNode.Accept(this, ctx);
var newCtx = new HashSet<string>();
nestedExtendsCount += 1;
foreach(var node in forNode.nodes) node.Accept(this, newCtx);
nestedExtendsCount -= 1;
return null;
}
public object Visit(CallNode callNode, object ctx)
{
callNode.callee.Accept(this, ctx);
foreach(var arg in callNode.args) arg.Accept(this, ctx);
return null;
}
public object Visit(IfNode ifNode, object ctx)
{
foreach(var condBlock in ifNode.blocks)
{
condBlock.Item1.Accept(this, ctx);
nestedExtendsCount += 1;
foreach(var stmnt in condBlock.Item2) stmnt.Accept(this, ctx);
nestedExtendsCount -= 1;
}
nestedExtendsCount += 1;
foreach(var stmnt in ifNode.elseCase) stmnt.Accept(this, ctx);
nestedExtendsCount -= 1;
return null;
}
public object Visit(List<Node> nodes)
{
foreach(var node in nodes) node.Accept(this, null);
return null;
}
}