Skip to content

Commit 61ff3d6

Browse files
committed
update dependencies
1 parent e816889 commit 61ff3d6

1 file changed

Lines changed: 174 additions & 0 deletions

File tree

Core/EVIL.Grammar/EVIL.Grammar.csproj

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,178 @@
1212
<ProjectReference Include="..\EVIL.CommonTypes\EVIL.CommonTypes.csproj"/>
1313
<ProjectReference Include="..\EVIL.Lexical\EVIL.Lexical.csproj"/>
1414
</ItemGroup>
15+
16+
<ItemGroup>
17+
<Compile Update="Parser.Expression.Additive.cs">
18+
<DependentUpon>Parser.cs</DependentUpon>
19+
</Compile>
20+
<Compile Update="Parser.Expression.And.cs">
21+
<DependentUpon>Parser.cs</DependentUpon>
22+
</Compile>
23+
<Compile Update="Parser.Expression.Array.cs">
24+
<DependentUpon>Parser.cs</DependentUpon>
25+
</Compile>
26+
<Compile Update="Parser.Expression.Assignment.cs">
27+
<DependentUpon>Parser.cs</DependentUpon>
28+
</Compile>
29+
<Compile Update="Parser.Expression.By.cs">
30+
<DependentUpon>Parser.cs</DependentUpon>
31+
</Compile>
32+
<Compile Update="Parser.Expression.Coalescing.cs">
33+
<DependentUpon>Parser.cs</DependentUpon>
34+
</Compile>
35+
<Compile Update="Parser.Expression.Conditional.cs">
36+
<DependentUpon>Parser.cs</DependentUpon>
37+
</Compile>
38+
<Compile Update="Parser.Expression.Constant.cs">
39+
<DependentUpon>Parser.cs</DependentUpon>
40+
</Compile>
41+
<Compile Update="Parser.Expression.Equality.cs">
42+
<DependentUpon>Parser.cs</DependentUpon>
43+
</Compile>
44+
<Compile Update="Parser.Expression.Error.cs">
45+
<DependentUpon>Parser.cs</DependentUpon>
46+
</Compile>
47+
<Compile Update="Parser.Expression.Fn.cs">
48+
<DependentUpon>Parser.cs</DependentUpon>
49+
</Compile>
50+
<Compile Update="Parser.Expression.Indexer.cs">
51+
<DependentUpon>Parser.cs</DependentUpon>
52+
</Compile>
53+
<Compile Update="Parser.Expression.Invocation.cs">
54+
<DependentUpon>Parser.cs</DependentUpon>
55+
</Compile>
56+
<Compile Update="Parser.Expression.LogicalAnd.cs">
57+
<DependentUpon>Parser.cs</DependentUpon>
58+
</Compile>
59+
<Compile Update="Parser.Expression.LogicalOr.cs">
60+
<DependentUpon>Parser.cs</DependentUpon>
61+
</Compile>
62+
<Compile Update="Parser.Expression.Multiplicative.cs">
63+
<DependentUpon>Parser.cs</DependentUpon>
64+
</Compile>
65+
<Compile Update="Parser.Expression.Or.Exclusive.cs">
66+
<DependentUpon>Parser.cs</DependentUpon>
67+
</Compile>
68+
<Compile Update="Parser.Expression.Or.Inclusive.cs">
69+
<DependentUpon>Parser.cs</DependentUpon>
70+
</Compile>
71+
<Compile Update="Parser.Expression.Pattern.cs">
72+
<DependentUpon>Parser.cs</DependentUpon>
73+
</Compile>
74+
<Compile Update="Parser.Expression.Postfix.cs">
75+
<DependentUpon>Parser.cs</DependentUpon>
76+
</Compile>
77+
<Compile Update="Parser.Expression.Prefix.cs">
78+
<DependentUpon>Parser.cs</DependentUpon>
79+
</Compile>
80+
<Compile Update="Parser.Expression.Primary.cs">
81+
<DependentUpon>Parser.cs</DependentUpon>
82+
</Compile>
83+
<Compile Update="Parser.Expression.Relational.cs">
84+
<DependentUpon>Parser.cs</DependentUpon>
85+
</Compile>
86+
<Compile Update="Parser.Expression.Self.cs">
87+
<DependentUpon>Parser.cs</DependentUpon>
88+
</Compile>
89+
<Compile Update="Parser.Expression.SelfFn.cs">
90+
<DependentUpon>Parser.cs</DependentUpon>
91+
</Compile>
92+
<Compile Update="Parser.Expression.SelfInvocation.cs">
93+
<DependentUpon>Parser.cs</DependentUpon>
94+
</Compile>
95+
<Compile Update="Parser.Expression.Shift.cs">
96+
<DependentUpon>Parser.cs</DependentUpon>
97+
</Compile>
98+
<Compile Update="Parser.Expression.SymbolReference.cs">
99+
<DependentUpon>Parser.cs</DependentUpon>
100+
</Compile>
101+
<Compile Update="Parser.Expression.Table.cs">
102+
<DependentUpon>Parser.cs</DependentUpon>
103+
</Compile>
104+
<Compile Update="Parser.Expression.TypeOf.cs">
105+
<DependentUpon>Parser.cs</DependentUpon>
106+
</Compile>
107+
<Compile Update="Parser.Expression.Unary.cs">
108+
<DependentUpon>Parser.cs</DependentUpon>
109+
</Compile>
110+
<Compile Update="Parser.Expression.With.cs">
111+
<DependentUpon>Parser.cs</DependentUpon>
112+
</Compile>
113+
<Compile Update="Parser.Expression.Yield.cs">
114+
<DependentUpon>Parser.cs</DependentUpon>
115+
</Compile>
116+
<Compile Update="Parser.Identifier.cs">
117+
<DependentUpon>Parser.cs</DependentUpon>
118+
</Compile>
119+
<Compile Update="Parser.List.Argument.cs">
120+
<DependentUpon>Parser.cs</DependentUpon>
121+
</Compile>
122+
<Compile Update="Parser.List.Attribute.cs">
123+
<DependentUpon>Parser.cs</DependentUpon>
124+
</Compile>
125+
<Compile Update="Parser.List.Parameter.cs">
126+
<DependentUpon>Parser.cs</DependentUpon>
127+
</Compile>
128+
<Compile Update="Parser.Program.cs">
129+
<DependentUpon>Parser.cs</DependentUpon>
130+
</Compile>
131+
<Compile Update="Parser.Statement.cs">
132+
<DependentUpon>Parser.cs</DependentUpon>
133+
</Compile>
134+
<Compile Update="Parser.Statement.Attribute.cs">
135+
<DependentUpon>Parser.cs</DependentUpon>
136+
</Compile>
137+
<Compile Update="Parser.Statement.Block.cs">
138+
<DependentUpon>Parser.cs</DependentUpon>
139+
</Compile>
140+
<Compile Update="Parser.Statement.Break.cs">
141+
<DependentUpon>Parser.cs</DependentUpon>
142+
</Compile>
143+
<Compile Update="Parser.Statement.DoWhile.cs">
144+
<DependentUpon>Parser.cs</DependentUpon>
145+
</Compile>
146+
<Compile Update="Parser.Statement.Each.cs">
147+
<DependentUpon>Parser.cs</DependentUpon>
148+
</Compile>
149+
<Compile Update="Parser.Statement.Expression.cs">
150+
<DependentUpon>Parser.cs</DependentUpon>
151+
</Compile>
152+
<Compile Update="Parser.Statement.ExpressionBody.cs">
153+
<DependentUpon>Parser.cs</DependentUpon>
154+
</Compile>
155+
<Compile Update="Parser.Statement.Fn.cs">
156+
<DependentUpon>Parser.cs</DependentUpon>
157+
</Compile>
158+
<Compile Update="Parser.Statement.For.cs">
159+
<DependentUpon>Parser.cs</DependentUpon>
160+
</Compile>
161+
<Compile Update="Parser.Statement.If.cs">
162+
<DependentUpon>Parser.cs</DependentUpon>
163+
</Compile>
164+
<Compile Update="Parser.Statement.Ret.cs">
165+
<DependentUpon>Parser.cs</DependentUpon>
166+
</Compile>
167+
<Compile Update="Parser.Statement.Retry.cs">
168+
<DependentUpon>Parser.cs</DependentUpon>
169+
</Compile>
170+
<Compile Update="Parser.Statement.Skip.cs">
171+
<DependentUpon>Parser.cs</DependentUpon>
172+
</Compile>
173+
<Compile Update="Parser.Statement.Throw.cs">
174+
<DependentUpon>Parser.cs</DependentUpon>
175+
</Compile>
176+
<Compile Update="Parser.Statement.Try.cs">
177+
<DependentUpon>Parser.cs</DependentUpon>
178+
</Compile>
179+
<Compile Update="Parser.Statement.Val.cs">
180+
<DependentUpon>Parser.cs</DependentUpon>
181+
</Compile>
182+
<Compile Update="Parser.Statement.Val.ReadWrite.cs">
183+
<DependentUpon>Parser.cs</DependentUpon>
184+
</Compile>
185+
<Compile Update="Parser.Statement.While.cs">
186+
<DependentUpon>Parser.cs</DependentUpon>
187+
</Compile>
188+
</ItemGroup>
15189
</Project>

0 commit comments

Comments
 (0)