-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathPrintAst.expected
More file actions
565 lines (565 loc) · 25.3 KB
/
PrintAst.expected
File metadata and controls
565 lines (565 loc) · 25.3 KB
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
methods.cs:
# 4| [NamespaceDeclaration] namespace ... { ... }
# 7| 1: [Class] TestRef
# 10| 6: [Method] Swap
# 10| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 10| 0: [Parameter] x
# 10| -1: [TypeMention] int
# 10| 1: [Parameter] y
# 10| -1: [TypeMention] int
# 11| 4: [BlockStmt] {...}
# 12| 0: [LocalVariableDeclStmt] ... ...;
# 12| 0: [LocalVariableDeclAndInitExpr] Int32 temp = ...
# 12| -1: [TypeMention] int
# 12| 0: [LocalVariableAccess] access to local variable temp
# 12| 1: [ParameterAccess] access to parameter x
# 13| 1: [ExprStmt] ...;
# 13| 0: [AssignExpr] ... = ...
# 13| 0: [ParameterAccess] access to parameter x
# 13| 1: [ParameterAccess] access to parameter y
# 14| 2: [ExprStmt] ...;
# 14| 0: [AssignExpr] ... = ...
# 14| 0: [ParameterAccess] access to parameter y
# 14| 1: [LocalVariableAccess] access to local variable temp
# 17| 7: [Method] Main
# 17| -1: [TypeMention] Void
# 18| 4: [BlockStmt] {...}
# 19| 0: [LocalVariableDeclStmt] ... ...;
# 19| 0: [LocalVariableDeclAndInitExpr] Int32 i = ...
# 19| -1: [TypeMention] int
# 19| 0: [LocalVariableAccess] access to local variable i
# 19| 1: [IntLiteral] 1
# 19| 1: [LocalVariableDeclAndInitExpr] Int32 j = ...
# 19| -1: [TypeMention] int
# 19| 0: [LocalVariableAccess] access to local variable j
# 19| 1: [IntLiteral] 2
# 20| 1: [ExprStmt] ...;
# 20| 0: [MethodCall] call to method Swap
# 20| 0: [LocalVariableAccess] access to local variable i
# 20| 1: [LocalVariableAccess] access to local variable j
# 21| 2: [ExprStmt] ...;
# 21| 0: [MethodCall] call to method WriteLine
# 21| -1: [TypeAccess] access to type Console
# 21| 0: [TypeMention] Console
# 21| 0: [StringLiteralUtf16] "{0} {1}"
# 21| 1: [CastExpr] (...) ...
# 21| 1: [LocalVariableAccess] access to local variable i
# 21| 2: [CastExpr] (...) ...
# 21| 1: [LocalVariableAccess] access to local variable j
# 22| 3: [ExprStmt] ...;
# 22| 0: [MethodCall] call to method WriteLine
# 22| -1: [TypeAccess] access to type Console
# 22| 0: [TypeMention] Console
# 22| 0: [StringLiteralUtf16] "{0} {1}"
# 22| 1: [CastExpr] (...) ...
# 22| 1: [LocalVariableAccess] access to local variable i
# 22| 2: [CastExpr] (...) ...
# 22| 1: [LocalVariableAccess] access to local variable j
# 26| 2: [Class] TestOut
# 29| 6: [Method] Divide
# 29| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 29| 0: [Parameter] x
# 29| -1: [TypeMention] int
# 29| 1: [Parameter] y
# 29| -1: [TypeMention] int
# 29| 2: [Parameter] result
# 29| -1: [TypeMention] int
# 29| 3: [Parameter] remainder
# 29| -1: [TypeMention] int
# 30| 4: [BlockStmt] {...}
# 31| 0: [ExprStmt] ...;
# 31| 0: [AssignExpr] ... = ...
# 31| 0: [ParameterAccess] access to parameter result
# 31| 1: [DivExpr] ... / ...
# 31| 0: [ParameterAccess] access to parameter x
# 31| 1: [ParameterAccess] access to parameter y
# 32| 1: [ExprStmt] ...;
# 32| 0: [AssignExpr] ... = ...
# 32| 0: [ParameterAccess] access to parameter remainder
# 32| 1: [RemExpr] ... % ...
# 32| 0: [ParameterAccess] access to parameter x
# 32| 1: [ParameterAccess] access to parameter y
# 35| 7: [Method] Main
# 35| -1: [TypeMention] Void
# 36| 4: [BlockStmt] {...}
# 37| 0: [LocalVariableDeclStmt] ... ...;
# 37| 0: [LocalVariableDeclExpr] Int32 res
# 37| 0: [TypeMention] int
# 37| 1: [LocalVariableDeclExpr] Int32 rem
# 37| 0: [TypeMention] int
# 38| 1: [ExprStmt] ...;
# 38| 0: [MethodCall] call to method Divide
# 38| 0: [IntLiteral] 10
# 38| 1: [IntLiteral] 3
# 38| 2: [LocalVariableAccess] access to local variable res
# 38| 3: [LocalVariableAccess] access to local variable rem
# 39| 2: [ExprStmt] ...;
# 39| 0: [MethodCall] call to method WriteLine
# 39| -1: [TypeAccess] access to type Console
# 39| 0: [TypeMention] Console
# 39| 0: [StringLiteralUtf16] "{0} {1}"
# 39| 1: [CastExpr] (...) ...
# 39| 1: [LocalVariableAccess] access to local variable res
# 39| 2: [CastExpr] (...) ...
# 39| 1: [LocalVariableAccess] access to local variable rem
# 43| 3: [Class] Console
# 46| 6: [Method] Write
# 46| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 46| 0: [Parameter] fmt
# 46| -1: [TypeMention] string
# 46| 1: [Parameter] args
# 46| -1: [TypeMention] Object[]
# 46| 1: [TypeMention] object
# 46| 4: [BlockStmt] {...}
# 47| 7: [Method] WriteLine
# 47| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 47| 0: [Parameter] fmt
# 47| -1: [TypeMention] string
# 47| 1: [Parameter] args
# 47| -1: [TypeMention] Object[]
# 47| 1: [TypeMention] object
# 47| 4: [BlockStmt] {...}
# 50| 4: [Class] TestOverloading
# 53| 6: [Method] F
# 53| -1: [TypeMention] Void
# 54| 4: [BlockStmt] {...}
# 55| 0: [ExprStmt] ...;
# 55| 0: [MethodCall] call to method WriteLine
# 55| -1: [TypeAccess] access to type Console
# 55| 0: [TypeMention] Console
# 55| 0: [StringLiteralUtf16] "F()"
# 58| 7: [Method] F
# 58| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 58| 0: [Parameter] x
# 58| -1: [TypeMention] object
# 59| 4: [BlockStmt] {...}
# 60| 0: [ExprStmt] ...;
# 60| 0: [MethodCall] call to method WriteLine
# 60| -1: [TypeAccess] access to type Console
# 60| 0: [TypeMention] Console
# 60| 0: [StringLiteralUtf16] "F(object)"
# 63| 8: [Method] F
# 63| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 63| 0: [Parameter] x
# 63| -1: [TypeMention] int
# 64| 4: [BlockStmt] {...}
# 65| 0: [ExprStmt] ...;
# 65| 0: [MethodCall] call to method WriteLine
# 65| -1: [TypeAccess] access to type Console
# 65| 0: [TypeMention] Console
# 65| 0: [StringLiteralUtf16] "F(int)"
# 68| 9: [Method] F
# 68| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 68| 0: [Parameter] x
# 68| -1: [TypeMention] double
# 69| 4: [BlockStmt] {...}
# 70| 0: [ExprStmt] ...;
# 70| 0: [MethodCall] call to method WriteLine
# 70| -1: [TypeAccess] access to type Console
# 70| 0: [TypeMention] Console
# 70| 0: [StringLiteralUtf16] "F(double)"
# 73| 12: [Method] F`1
# 73| -1: [TypeMention] Void
#-----| 1: (Type parameters)
# 73| 0: [TypeParameter] T
#-----| 2: (Parameters)
# 73| 0: [Parameter] x
# 73| -1: [TypeMention] T
# 74| 4: [BlockStmt] {...}
# 75| 0: [ExprStmt] ...;
# 75| 0: [MethodCall] call to method WriteLine
# 75| -1: [TypeAccess] access to type Console
# 75| 0: [TypeMention] Console
# 75| 0: [StringLiteralUtf16] "F<T>(T)"
# 78| 13: [Method] F
# 78| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 78| 0: [Parameter] x
# 78| -1: [TypeMention] double
# 78| 1: [Parameter] y
# 78| -1: [TypeMention] double
# 79| 4: [BlockStmt] {...}
# 80| 0: [ExprStmt] ...;
# 80| 0: [MethodCall] call to method WriteLine
# 80| -1: [TypeAccess] access to type Console
# 80| 0: [TypeMention] Console
# 80| 0: [StringLiteralUtf16] "F(double, double)"
# 83| 14: [Method] Main
# 83| -1: [TypeMention] Void
# 84| 4: [BlockStmt] {...}
# 85| 0: [ExprStmt] ...;
# 85| 0: [MethodCall] call to method F
# 86| 1: [ExprStmt] ...;
# 86| 0: [MethodCall] call to method F
# 86| 0: [IntLiteral] 1
# 87| 2: [ExprStmt] ...;
# 87| 0: [MethodCall] call to method F
# 87| 0: [DoubleLiteral] 1
# 88| 3: [ExprStmt] ...;
# 88| 0: [MethodCall] call to method F<String>
# 88| 0: [StringLiteralUtf16] "abc"
# 89| 4: [ExprStmt] ...;
# 89| 0: [MethodCall] call to method F
# 89| 0: [CastExpr] (...) ...
# 89| 0: [TypeAccess] access to type Double
# 89| 0: [TypeMention] double
# 89| 1: [IntLiteral] 1
# 90| 5: [ExprStmt] ...;
# 90| 0: [MethodCall] call to method F
# 90| 0: [CastExpr] (...) ...
# 90| 0: [TypeAccess] access to type Object
# 90| 0: [TypeMention] object
# 90| 1: [IntLiteral] 1
# 91| 6: [ExprStmt] ...;
# 91| 0: [MethodCall] call to method F<Int32>
# 91| 0: [IntLiteral] 1
# 92| 7: [ExprStmt] ...;
# 92| 0: [MethodCall] call to method F
# 92| 0: [CastExpr] (...) ...
# 92| 1: [IntLiteral] 1
# 92| 1: [CastExpr] (...) ...
# 92| 1: [IntLiteral] 1
# 97| 5: [Class] Extensions
# 100| 4: [ExtensionMethod] ToInt32
# 100| -1: [TypeMention] int
#-----| 2: (Parameters)
# 100| 0: [Parameter] s
# 100| -1: [TypeMention] string
# 101| 4: [BlockStmt] {...}
# 102| 0: [ReturnStmt] return ...;
# 102| 0: [MethodCall] call to method Parse
# 102| -1: [TypeAccess] access to type Int32
# 102| 0: [TypeMention] int
# 102| 0: [ParameterAccess] access to parameter s
# 105| 5: [ExtensionMethod] ToBool
# 105| -1: [TypeMention] bool
#-----| 2: (Parameters)
# 105| 0: [Parameter] s
# 105| -1: [TypeMention] string
# 105| 1: [Parameter] f
# 105| -1: [TypeMention] Func<string, bool>
# 105| 1: [TypeMention] string
# 105| 2: [TypeMention] bool
# 106| 4: [BlockStmt] {...}
# 107| 0: [ReturnStmt] return ...;
# 107| 0: [DelegateCall] delegate call
# 107| -1: [ParameterAccess] access to parameter f
# 107| 0: [ParameterAccess] access to parameter s
# 110| 7: [ExtensionMethod] Slice`1
# 110| -1: [TypeMention] T[]
# 110| 1: [TypeMention] T
#-----| 1: (Type parameters)
# 110| 0: [TypeParameter] T
#-----| 2: (Parameters)
# 110| 0: [Parameter] source
# 110| -1: [TypeMention] T[]
# 110| 1: [TypeMention] T
# 110| 1: [Parameter] index
# 110| -1: [TypeMention] int
# 110| 2: [Parameter] count
# 110| -1: [TypeMention] int
# 111| 4: [BlockStmt] {...}
# 112| 0: [IfStmt] if (...) ...
# 112| 0: [LogicalOrExpr] ... || ...
# 112| 0: [LogicalOrExpr] ... || ...
# 112| 0: [LTExpr] ... < ...
# 112| 0: [ParameterAccess] access to parameter index
# 112| 1: [IntLiteral] 0
# 112| 1: [LTExpr] ... < ...
# 112| 0: [ParameterAccess] access to parameter count
# 112| 1: [IntLiteral] 0
# 112| 1: [LTExpr] ... < ...
# 112| 0: [SubExpr] ... - ...
# 112| 0: [PropertyCall] access to property Length
# 112| -1: [ParameterAccess] access to parameter source
# 112| 1: [ParameterAccess] access to parameter index
# 112| 1: [ParameterAccess] access to parameter count
# 113| 1: [ThrowStmt] throw ...;
# 113| 0: [ObjectCreation] object creation of type ArgumentException
# 113| 0: [TypeMention] ArgumentException
# 114| 1: [LocalVariableDeclStmt] ... ...;
# 114| 0: [LocalVariableDeclAndInitExpr] T[] result = ...
# 114| -1: [TypeMention] T[]
# 114| 1: [TypeMention] T
# 114| 0: [LocalVariableAccess] access to local variable result
# 114| 1: [ArrayCreation] array creation of type T[]
# 114| -1: [TypeMention] T[]
# 114| 1: [TypeMention] T
# 114| 0: [ParameterAccess] access to parameter count
# 115| 2: [ExprStmt] ...;
# 115| 0: [MethodCall] call to method Copy
# 115| -1: [TypeAccess] access to type Array
# 115| 0: [TypeMention] Array
# 115| 0: [ParameterAccess] access to parameter source
# 115| 1: [ParameterAccess] access to parameter index
# 115| 2: [LocalVariableAccess] access to local variable result
# 115| 3: [IntLiteral] 0
# 115| 4: [ParameterAccess] access to parameter count
# 116| 3: [ReturnStmt] return ...;
# 116| 0: [LocalVariableAccess] access to local variable result
# 119| 8: [Method] CallToInt32
# 119| -1: [TypeMention] int
# 119| 4: [MethodCall] call to method ToInt32
# 119| 0: [StringLiteralUtf16] "0"
# 122| 6: [Class] TestExtensions
# 125| 4: [Method] Main
# 125| -1: [TypeMention] Void
# 126| 4: [BlockStmt] {...}
# 127| 0: [LocalVariableDeclStmt] ... ...;
# 127| 0: [LocalVariableDeclAndInitExpr] String[] strings = ...
# 127| -1: [TypeMention] String[]
# 127| 1: [TypeMention] string
# 127| 0: [LocalVariableAccess] access to local variable strings
# 127| 1: [ArrayCreation] array creation of type String[]
# 127| -1: [ArrayInitializer] { ..., ... }
# 127| 0: [StringLiteralUtf16] "1"
# 127| 1: [StringLiteralUtf16] "22"
# 127| 2: [StringLiteralUtf16] "333"
# 127| 3: [StringLiteralUtf16] "4444"
# 128| 1: [ForeachStmt] foreach (... ... in ...) ...
# 128| 0: [LocalVariableDeclExpr] String s
# 128| 0: [TypeMention] string
# 128| 1: [MethodCall] call to method Slice<String>
# 128| -1: [LocalVariableAccess] access to local variable strings
# 128| 0: [IntLiteral] 1
# 128| 1: [IntLiteral] 2
# 129| 2: [BlockStmt] {...}
# 130| 0: [ExprStmt] ...;
# 130| 0: [MethodCall] call to method WriteLine
# 130| -1: [TypeAccess] access to type Console
# 130| 0: [TypeMention] Console
# 130| 0: [MethodCall] call to method ToInt32
# 130| -1: [LocalVariableAccess] access to local variable s
# 133| 2: [ExprStmt] ...;
# 133| 0: [MethodCall] call to method ToInt32
# 133| -1: [TypeAccess] access to type Extensions
# 133| 0: [TypeMention] Extensions
# 133| 0: [StringLiteralUtf16] ""
# 135| 3: [ExprStmt] ...;
# 135| 0: [MethodCall] call to method ToBool
# 135| -1: [TypeAccess] access to type Extensions
# 135| 0: [TypeMention] Extensions
# 135| 0: [StringLiteralUtf16] "true"
# 135| 1: [ImplicitDelegateCreation] delegate creation of type Func<String,Boolean>
# 135| 0: [MethodAccess] access to method Parse
# 135| -1: [TypeAccess] access to type Boolean
# 135| 0: [TypeMention] bool
# 140| 7: [Class] TestDefaultParameters
# 142| 5: [Method] Method1
# 142| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 142| 0: [Parameter] x
# 142| -1: [TypeMention] int
# 142| 1: [Parameter] y
# 142| -1: [TypeMention] int
# 143| 4: [BlockStmt] {...}
# 146| 6: [Method] Method2
# 146| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 146| 0: [Parameter] a
# 146| -1: [TypeMention] int
# 146| 1: [Parameter] b
# 146| -1: [TypeMention] int
# 146| 2: [Parameter] c
# 146| -1: [TypeMention] int
# 146| 1: [IntLiteral] 1
# 146| 3: [Parameter] d
# 146| -1: [TypeMention] int
# 146| 1: [IntLiteral] 2
# 146| 4: [Parameter] e
# 146| -1: [TypeMention] string
# 146| 1: [AddExpr] ... + ...
# 146| 0: [StringLiteralUtf16] "a"
# 146| 1: [StringLiteralUtf16] "b"
# 147| 4: [BlockStmt] {...}
# 150| 7: [InstanceConstructor] TestDefaultParameters
#-----| 2: (Parameters)
# 150| 0: [Parameter] x
# 150| -1: [TypeMention] int
# 151| 4: [BlockStmt] {...}
# 154| 8: [InstanceConstructor] TestDefaultParameters
#-----| 2: (Parameters)
# 154| 0: [Parameter] x
# 154| -1: [TypeMention] string
# 154| 1: [StringLiteralUtf16] "abc"
# 154| 1: [Parameter] y
# 154| -1: [TypeMention] double
# 154| 1: [ObjectCreation] object creation of type Double
# 154| 0: [TypeMention] double
# 155| 4: [BlockStmt] {...}
# 158| 9: [DelegateType] Del
#-----| 2: (Parameters)
# 158| 0: [Parameter] a
# 158| -1: [TypeMention] string
# 158| 1: [Parameter] b
# 158| -1: [TypeMention] int
# 158| 1: [IntLiteral] 12
# 158| 2: [Parameter] c
# 158| -1: [TypeMention] double
# 158| 1: [ObjectCreation] object creation of type Double
# 158| 0: [TypeMention] double
# 160| 10: [Indexer] Item
# 160| -1: [TypeMention] int
#-----| 1: (Parameters)
# 160| 0: [Parameter] x
# 160| -1: [TypeMention] int
# 160| 1: [Parameter] y
# 160| -1: [TypeMention] int
# 160| 1: [IntLiteral] 0
# 162| 3: [Getter] get_Item
#-----| 2: (Parameters)
# 160| 0: [Parameter] x
# 160| 1: [Parameter] y
# 160| 1: [IntLiteral] 0
# 162| 4: [BlockStmt] {...}
# 162| 0: [ReturnStmt] return ...;
# 162| 0: [AddExpr] ... + ...
# 162| 0: [ParameterAccess] access to parameter x
# 162| 1: [ParameterAccess] access to parameter y
# 163| 4: [Setter] set_Item
#-----| 2: (Parameters)
# 160| 0: [Parameter] x
# 160| 1: [Parameter] y
# 160| 1: [IntLiteral] 0
# 163| 2: [Parameter] value
# 163| 4: [BlockStmt] {...}
# 167| 8: [Class] TestDefaultExtensionParameters
# 169| 4: [ExtensionMethod] Plus
# 169| -1: [TypeMention] int
#-----| 2: (Parameters)
# 169| 0: [Parameter] left
# 169| -1: [TypeMention] int
# 169| 1: [Parameter] right
# 169| -1: [TypeMention] int
# 169| 1: [IntLiteral] 0
# 170| 4: [BlockStmt] {...}
# 171| 0: [ReturnStmt] return ...;
# 171| 0: [AddExpr] ... + ...
# 171| 0: [ParameterAccess] access to parameter left
# 171| 1: [ParameterAccess] access to parameter right
# 174| 6: [ExtensionMethod] SkipTwo`1
# 174| -1: [TypeMention] IEnumerable<T>
# 174| 1: [TypeMention] T
#-----| 1: (Type parameters)
# 174| 0: [TypeParameter] T
#-----| 2: (Parameters)
# 174| 0: [Parameter] list
# 174| -1: [TypeMention] IEnumerable<T>
# 174| 1: [TypeMention] T
# 174| 1: [Parameter] i
# 174| -1: [TypeMention] int
# 174| 1: [IntLiteral] 1
# 175| 4: [BlockStmt] {...}
# 176| 0: [ReturnStmt] return ...;
# 176| 0: [ParameterAccess] access to parameter list
# 179| 7: [ExtensionMethod] SkipTwoInt
# 179| -1: [TypeMention] IEnumerable<int>
# 179| 1: [TypeMention] int
#-----| 2: (Parameters)
# 179| 0: [Parameter] list
# 179| -1: [TypeMention] IEnumerable<int>
# 179| 1: [TypeMention] int
# 179| 1: [Parameter] i
# 179| -1: [TypeMention] int
# 179| 1: [IntLiteral] 1
# 180| 4: [BlockStmt] {...}
# 181| 0: [ReturnStmt] return ...;
# 181| 0: [MethodCall] call to method SkipTwo<Int32>
# 181| -1: [ParameterAccess] access to parameter list
# 181| 0: [ParameterAccess] access to parameter i
# 185| 9: [Class] TestCollidingMethods`1
#-----| 1: (Type parameters)
# 185| 0: [TypeParameter] T
# 187| 6: [Method] M
# 187| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 187| 0: [Parameter] p1
# 187| -1: [TypeMention] T
# 187| 1: [Parameter] p2
# 187| -1: [TypeMention] int
# 187| 4: [BlockStmt] {...}
# 188| 7: [Method] M
# 188| -1: [TypeMention] Void
#-----| 2: (Parameters)
# 188| 0: [Parameter] p1
# 188| -1: [TypeMention] int
# 188| 1: [Parameter] p2
# 188| -1: [TypeMention] int
# 188| 4: [BlockStmt] {...}
# 190| 8: [Method] Calls
# 190| -1: [TypeMention] Void
# 191| 4: [BlockStmt] {...}
# 192| 0: [LocalVariableDeclStmt] ... ...;
# 192| 0: [LocalVariableDeclAndInitExpr] TestCollidingMethods<Int32> x = ...
# 192| -1: [TypeMention] TestCollidingMethods<int>
# 192| 0: [LocalVariableAccess] access to local variable x
# 192| 1: [ObjectCreation] object creation of type TestCollidingMethods<Int32>
# 192| 0: [TypeMention] TestCollidingMethods<int>
# 192| 1: [TypeMention] int
# 193| 1: [ExprStmt] ...;
# 193| 0: [MethodCall] call to method M
# 193| -1: [LocalVariableAccess] access to local variable x
# 193| 0: [IntLiteral] 1
# 193| 1: [IntLiteral] 1
# 195| 2: [LocalVariableDeclStmt] ... ...;
# 195| 0: [LocalVariableDeclAndInitExpr] TestCollidingMethods<Double> y = ...
# 195| -1: [TypeMention] TestCollidingMethods<double>
# 195| 0: [LocalVariableAccess] access to local variable y
# 195| 1: [ObjectCreation] object creation of type TestCollidingMethods<Double>
# 195| 0: [TypeMention] TestCollidingMethods<double>
# 195| 1: [TypeMention] double
# 196| 3: [ExprStmt] ...;
# 196| 0: [MethodCall] call to method M
# 196| -1: [LocalVariableAccess] access to local variable y
# 196| 0: [DoubleLiteral] 1
# 196| 1: [IntLiteral] 1
# 197| 4: [ExprStmt] ...;
# 197| 0: [MethodCall] call to method M
# 197| -1: [LocalVariableAccess] access to local variable y
# 197| 0: [IntLiteral] 1
# 197| 1: [IntLiteral] 1
# 200| 9: [Class] Nested
# 202| 5: [InstanceConstructor] Nested
#-----| 2: (Parameters)
# 202| 0: [Parameter] p1
# 202| -1: [TypeMention] int
# 202| 4: [BlockStmt] {...}
# 203| 6: [InstanceConstructor] Nested
#-----| 2: (Parameters)
# 203| 0: [Parameter] p1
# 203| -1: [TypeMention] T
# 204| 4: [BlockStmt] {...}
# 205| 0: [LocalVariableDeclStmt] ... ...;
# 205| 0: [LocalVariableDeclAndInitExpr] Nested x = ...
# 205| -1: [TypeMention] Nested
# 205| 0: [LocalVariableAccess] access to local variable x
# 205| 1: [ObjectCreation] object creation of type Nested
# 205| -1: [TypeMention] Nested
# 205| 1: [TypeMention] TestCollidingMethods<int>
# 205| 1: [TypeMention] int
# 205| 0: [IntLiteral] 1
# 206| 1: [LocalVariableDeclStmt] ... ...;
# 206| 0: [LocalVariableDeclAndInitExpr] Nested y = ...
# 206| -1: [TypeMention] Nested
# 206| 0: [LocalVariableAccess] access to local variable y
# 206| 1: [ObjectCreation] object creation of type Nested
# 206| -1: [TypeMention] Nested
# 206| 1: [TypeMention] TestCollidingMethods<double>
# 206| 1: [TypeMention] double
# 206| 0: [DoubleLiteral] 1
# 207| 2: [LocalVariableDeclStmt] ... ...;
# 207| 0: [LocalVariableDeclAndInitExpr] Nested z = ...
# 207| -1: [TypeMention] Nested
# 207| 0: [LocalVariableAccess] access to local variable z
# 207| 1: [ObjectCreation] object creation of type Nested
# 207| -1: [TypeMention] Nested
# 207| 1: [TypeMention] TestCollidingMethods<double>
# 207| 1: [TypeMention] double
# 207| 0: [IntLiteral] 1