forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICSharpCode.NRefactory.CSharp.xml
More file actions
6381 lines (6282 loc) · 319 KB
/
ICSharpCode.NRefactory.CSharp.xml
File metadata and controls
6381 lines (6282 loc) · 319 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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ICSharpCode.NRefactory.CSharp</name>
</assembly>
<members>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNode">
<summary>
Represents a node in the control flow graph of a C# method.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNodeType.None">
<summary>
Unknown node type
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNodeType.StartNode">
<summary>
Node in front of a statement
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNodeType.BetweenStatements">
<summary>
Node between two statements
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNodeType.EndNode">
<summary>
Node at the end of a statement list
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNodeType.LoopCondition">
<summary>
Node representing the position before evaluating the condition of a loop.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdge.IsLeavingTryFinally">
<summary>
Gets whether this control flow edge is leaving any try-finally statements.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdge.TryFinallyStatements">
<summary>
Gets the try-finally statements that this control flow edge is leaving.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdgeType.Normal">
<summary>
Regular control flow.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdgeType.ConditionTrue">
<summary>
Conditional control flow (edge taken if condition is true)
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdgeType.ConditionFalse">
<summary>
Conditional control flow (edge taken if condition is false)
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowEdgeType.Jump">
<summary>
A jump statement (goto, goto case, break or continue)
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder">
<summary>
Constructs the control flow graph for C# statements.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder.EvaluateConstant(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Evaluates an expression.
</summary>
<returns>The constant value of the expression; or null if the expression is not a constant.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder.EvaluateCondition(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Evaluates an expression.
</summary>
<returns>The value of the constant boolean expression; or null if the value is not a constant boolean expression.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder.ExportGraph(System.Collections.Generic.IList{ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNode})">
<summary>
Debugging helper that exports a control flow graph.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder.EvaluateOnlyPrimitiveConstants">
<summary>
Gets/Sets whether to handle only primitive expressions as constants (no complex expressions like "a + b").
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DepthFirstAstVisitor`2">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IAstVisitor`2">
<summary>
AST visitor.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowGraphBuilder.NodeCreationVisitor.CreateConnectedEndNode(ICSharpCode.NRefactory.CSharp.Statement,ICSharpCode.NRefactory.CSharp.Analysis.ControlFlowNode)">
<summary>
Creates an end node for <c>stmt</c> and connects <c>from</c> with the new node.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus">
<summary>
Represents the definite assignment status of a variable at a specific location.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus.PotentiallyAssigned">
<summary>
The variable might be assigned or unassigned.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus.DefinitelyAssigned">
<summary>
The variable is definitely assigned.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus.AssignedAfterTrueExpression">
<summary>
The variable is definitely assigned iff the expression results in the value 'true'.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus.AssignedAfterFalseExpression">
<summary>
The variable is definitely assigned iff the expression results in the value 'false'.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentStatus.CodeUnreachable">
<summary>
The code is unreachable.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis">
<summary>
Implements the C# definite assignment analysis (C# 4.0 Spec: §5.3 Definite assignment)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis.SetAnalyzedRange(ICSharpCode.NRefactory.CSharp.Statement,ICSharpCode.NRefactory.CSharp.Statement,System.Boolean,System.Boolean)">
<summary>
Sets the range of statements to be analyzed.
This method can be used to restrict the analysis to only a part of the method.
Only the control flow paths that are fully contained within the selected part will be analyzed.
</summary>
<remarks>By default, both 'start' and 'end' are inclusive.</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis.ExportGraph">
<summary>
Exports the CFG. This method is intended to help debugging issues related to definite assignment.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis.EvaluateConstant(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Evaluates an expression.
</summary>
<returns>The constant value of the expression; or null if the expression is not a constant.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis.EvaluateCondition(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Evaluates an expression.
</summary>
<returns>The value of the constant boolean expression; or null if the value is not a constant boolean expression.</returns>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.Analysis.DefiniteAssignmentAnalysis.UnassignedVariableUses">
<summary>
Gets the unassigned usages of the previously analyzed variable.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.ReachabilityAnalysis">
<summary>
Statement reachability analysis.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Analysis.SemanticHighlightingVisitor`1">
<summary>
C# Semantic highlighter.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DepthFirstAstVisitor">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IAstVisitor">
<summary>
AST visitor.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.SemanticHighlightingVisitor`1.parameterModifierColor">
<summary>
Used for 'in' modifiers on type parameters.
</summary>
<remarks>
'in' may have a different color when used with 'foreach'.
'out' is not colored by semantic highlighting, as syntax highlighting can already detect it as a parameter modifier.
</remarks>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.Analysis.SemanticHighlightingVisitor`1.inactiveCodeColor">
<summary>
Used for inactive code (excluded by preprocessor or ConditionalAttribute)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.SemanticHighlightingVisitor`1.VisitChildrenUntil(ICSharpCode.NRefactory.CSharp.AstNode,ICSharpCode.NRefactory.CSharp.AstNode)">
<summary>
Visit all children of <c>node</c> until (but excluding) <c>end</c>.
If <c>end</c> is a null node, nothing will be visited.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Analysis.SemanticHighlightingVisitor`1.VisitChildrenAfter(ICSharpCode.NRefactory.CSharp.AstNode,ICSharpCode.NRefactory.CSharp.AstNode)">
<summary>
Visit all children of <c>node</c> after (excluding) <c>start</c>.
If <c>start</c> is a null node, all children will be visited.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetRegion">
<summary>
Gets the region from StartLocation to EndLocation for this node.
The file name of the region is set based on the parent SyntaxTree's file name.
If this node is not connected to a whole compilation, the file name will be null.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetChildByRole``1(ICSharpCode.NRefactory.Role{``0})">
<summary>
Gets the first child with the specified role.
Returns the role's null object if the child is not found.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.AddChildUnsafe(ICSharpCode.NRefactory.CSharp.AstNode,ICSharpCode.NRefactory.Role)">
<summary>
Adds a child without performing any safety checks.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.Remove">
<summary>
Removes this node from its parent.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.ReplaceWith(ICSharpCode.NRefactory.CSharp.AstNode)">
<summary>
Replaces this node with the new node.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.Clone">
<summary>
Clones the whole subtree starting at this AST node.
</summary>
<remarks>Annotations are copied over to the new nodes; and any annotations implementing ICloneable will be cloned.</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNextNode(System.Func{ICSharpCode.NRefactory.CSharp.AstNode,System.Boolean})">
<summary>
Gets the next node which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetPrevNode(System.Func{ICSharpCode.NRefactory.CSharp.AstNode,System.Boolean})">
<summary>
Gets the previous node which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNextSibling(System.Func{ICSharpCode.NRefactory.CSharp.AstNode,System.Boolean})">
<summary>
Gets the next sibling which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetPrevSibling(System.Func{ICSharpCode.NRefactory.CSharp.AstNode,System.Boolean})">
<summary>
Gets the next sibling which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNodeAt(System.Int32,System.Int32,System.Predicate{ICSharpCode.NRefactory.CSharp.AstNode})">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNodeAt(ICSharpCode.NRefactory.TextLocation,System.Predicate{ICSharpCode.NRefactory.CSharp.AstNode})">
<summary>
Gets the node specified by pred at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNodeAt``1(System.Int32,System.Int32)">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNodeAt``1(ICSharpCode.NRefactory.TextLocation)">
<summary>
Gets the node specified by T at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetAdjacentNodeAt(System.Int32,System.Int32,System.Predicate{ICSharpCode.NRefactory.CSharp.AstNode})">
<summary>
Gets the node specified by pred at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetAdjacentNodeAt(ICSharpCode.NRefactory.TextLocation,System.Predicate{ICSharpCode.NRefactory.CSharp.AstNode})">
<summary>
Gets the node specified by pred at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetAdjacentNodeAt``1(System.Int32,System.Int32)">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetAdjacentNodeAt``1(ICSharpCode.NRefactory.TextLocation)">
<summary>
Gets the node specified by T at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.GetNodeContaining(ICSharpCode.NRefactory.TextLocation,ICSharpCode.NRefactory.TextLocation)">
<summary>
Gets the node that fully contains the range from startLocation to endLocation.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.ToString(ICSharpCode.NRefactory.CSharp.CSharpFormattingOptions)">
<summary>
Gets the node as formatted C# output.
</summary>
<param name='formattingOptions'>
Formatting options.
</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.Contains(System.Int32,System.Int32)">
<summary>
Returns true, if the given coordinates (line, column) are in the node.
</summary>
<returns>
True, if the given coordinates are between StartLocation and EndLocation (exclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.Contains(ICSharpCode.NRefactory.TextLocation)">
<summary>
Returns true, if the given coordinates are in the node.
</summary>
<returns>
True, if location is between StartLocation and EndLocation (exclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.IsInside(System.Int32,System.Int32)">
<summary>
Returns true, if the given coordinates (line, column) are in the node.
</summary>
<returns>
True, if the given coordinates are between StartLocation and EndLocation (inclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNode.IsInside(ICSharpCode.NRefactory.TextLocation)">
<summary>
Returns true, if the given coordinates are in the node.
</summary>
<returns>
True, if location is between StartLocation and EndLocation (inclusive); otherwise, false.
</returns>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.AstNode.Ancestors">
<summary>
Gets the ancestors of this node (excluding this node itself)
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.AstNode.AncestorsAndSelf">
<summary>
Gets the ancestors of this node (including this node itself)
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.AstNode.Descendants">
<summary>
Gets all descendants of this node (excluding this node itself).
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.AstNode.DescendantsAndSelf">
<summary>
Gets all descendants of this node (including this node itself).
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AstNodeCollection`1">
<summary>
Represents the children of an AstNode that have a specific role.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNodeCollection`1.FirstOrNullObject(System.Func{`0,System.Boolean})">
<summary>
Returns the first element for which the predicate returns true,
or the null node (AstNode with IsNull=true) if no such object is found.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNodeCollection`1.LastOrNullObject(System.Func{`0,System.Boolean})">
<summary>
Returns the last element for which the predicate returns true,
or the null node (AstNode with IsNull=true) if no such object is found.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstNodeCollection`1.AcceptVisitor(ICSharpCode.NRefactory.CSharp.IAstVisitor)">
<summary>
Applies the <paramref name="visitor"/> to all nodes in this collection.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AstType">
<summary>
A type reference in the C# AST.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.ToTypeReference(ICSharpCode.NRefactory.TypeSystem.InterningProvider)">
<summary>
Create an ITypeReference for this AstType.
Uses the context (ancestors of this node) to determine the correct <see cref="T:ICSharpCode.NRefactory.CSharp.NameLookupMode"/>.
</summary>
<remarks>
The resulting type reference will read the context information from the
<see cref="T:ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext"/>:
For resolving type parameters, the CurrentTypeDefinition/CurrentMember is used.
For resolving simple names, the current namespace and usings from the CurrentUsingScope
(on CSharpTypeResolveContext only) is used.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.ToTypeReference(ICSharpCode.NRefactory.CSharp.NameLookupMode,ICSharpCode.NRefactory.TypeSystem.InterningProvider)">
<summary>
Create an ITypeReference for this AstType.
</summary>
<remarks>
The resulting type reference will read the context information from the
<see cref="T:ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext"/>:
For resolving type parameters, the CurrentTypeDefinition/CurrentMember is used.
For resolving simple names, the current namespace and usings from the CurrentUsingScope
(on CSharpTypeResolveContext only) is used.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.GetNameLookupMode">
<summary>
Gets the name lookup mode from the context (looking at the ancestors of this <see cref="T:ICSharpCode.NRefactory.CSharp.AstType"/>).
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.MakePointerType">
<summary>
Creates a pointer type from this type by nesting it in a <see cref="T:ICSharpCode.NRefactory.CSharp.ComposedType"/>.
If this type already is a pointer type, this method just increases the PointerRank of the existing pointer type.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.MakeArrayType(System.Int32)">
<summary>
Creates an array type from this type by nesting it in a <see cref="T:ICSharpCode.NRefactory.CSharp.ComposedType"/>.
If this type already is an array type, the additional rank is prepended to the existing array specifier list.
Thus, <c>new SimpleType("T").MakeArrayType(1).MakeArrayType(2)</c> will result in "T[,][]".
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.MakeNullableType">
<summary>
Creates a nullable type from this type by nesting it in a <see cref="T:ICSharpCode.NRefactory.CSharp.ComposedType"/>.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.Member(System.String)">
<summary>
Builds an expression that can be used to access a static member on this type.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.MemberType(System.String,ICSharpCode.NRefactory.CSharp.AstType[])">
<summary>
Builds an expression that can be used to access a static member on this type.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.MemberType(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.AstType})">
<summary>
Builds an expression that can be used to access a static member on this type.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.Invoke(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an invocation expression using this type as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.Invoke(System.String,ICSharpCode.NRefactory.CSharp.Expression[])">
<summary>
Builds an invocation expression using this type as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.Invoke(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.AstType},System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an invocation expression using this type as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AstType.Create(System.String)">
<summary>
Creates a simple AstType from a dotted name.
Does not support generics, arrays, etc. - just simple dotted names,
e.g. namespace names.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DocumentationReference">
<summary>
Represents a 'cref' reference in XML documentation.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.EntityType">
<summary>
Gets/Sets the entity type.
Possible values are:
<c>EntityType.Operator</c> for operators,
<c>EntityType.Indexer</c> for indexers,
<c>EntityType.TypeDefinition</c> for references to primitive types,
and <c>EntityType.None</c> for everything else.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.OperatorType">
<summary>
Gets/Sets the operator type.
This property is only used when EntityType==Operator.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.HasParameterList">
<summary>
Gets/Sets whether a parameter list was provided.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.DeclaringType">
<summary>
Gets/Sets the declaring type.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.MemberName">
<summary>
Gets/sets the member name.
This property is only used when EntityType==None.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.DocumentationReference.ConversionOperatorReturnType">
<summary>
Gets/Sets the return type of conversion operators.
This property is only used when EntityType==Operator and OperatorType is explicit or implicit.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IdentifierExpressionBackreference">
<summary>
Matches identifier expressions that have the same identifier as the referenced variable/type definition/method definition.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.SyntaxExtensions">
<summary>
Extension methods for the syntax tree.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.SyntaxTree.GetTypes(System.Boolean)">
<summary>
Gets all defined types in this syntax tree.
</summary>
<returns>
A list containing <see cref="T:ICSharpCode.NRefactory.CSharp.TypeDeclaration"/> or <see cref="T:ICSharpCode.NRefactory.CSharp.DelegateDeclaration"/> nodes.
</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.SyntaxTree.ToTypeSystem">
<summary>
Converts this syntax tree into a parsed file that can be stored in the type system.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.SyntaxTree.FileName">
<summary>
Gets/Sets the file name of this syntax tree.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.SyntaxTree.ConditionalSymbols">
<summary>
Gets the conditional symbols used to parse the source file. Note that this list contains
the conditional symbols at the start of the first token in the file - including the ones defined
in the source file.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.SyntaxTree.TopExpression">
<summary>
Gets the expression that was on top of the parse stack.
This is the only way to get an expression that isn't part of a statment.
(eg. when an error follows an expression).
This is used for code completion to 'get the expression before a token - like ., <, ('.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ArraySpecifier">
<summary>
[,,,]
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.CSharpTokenNode">
<summary>
Represents a token in C#. Note that the type of the token is defined through the TokenRole.
</summary>
<remarks>
In all non null c# token nodes the Role of a CSharpToken must be a TokenRole.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.CSharpUtil.InvertCondition(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Inverts a boolean condition. Note: The condition object can be frozen (from AST) it's cloned internally.
</summary>
<param name="condition">The condition to invert.</param>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.CSharpUtil.NegateRelationalOperator(ICSharpCode.NRefactory.CSharp.BinaryOperatorType)">
<summary>
Get negation of the specified relational operator
</summary>
<returns>
negation of the specified relational operator, or BinaryOperatorType.Any if it's not a relational operator
</returns>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DepthFirstAstVisitor`1">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IAstVisitor`1">
<summary>
AST visitor.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ErrorNode">
<summary>
Represents a parsing error in the ast. At the moment it only represents missing closing bracket.
This closing bracket is replaced by a node at the highest possible position.
(To make GetAstNodeAt (line, col) working).
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AnonymousMethodExpression">
<summary>
[async] delegate(Parameters) {Body}
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.Expression">
<summary>
Base class for expressions.
</summary>
<remarks>
This class is useful even though it doesn't provide any additional functionality:
It can be used to communicate more information in APIs, e.g. "this subnode will always be an expression"
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Member(System.String)">
<summary>
Builds an member reference expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Indexer(System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an indexer expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Indexer(ICSharpCode.NRefactory.CSharp.Expression[])">
<summary>
Builds an indexer expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Invoke(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an invocation expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Invoke(System.String,ICSharpCode.NRefactory.CSharp.Expression[])">
<summary>
Builds an invocation expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Invoke(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.AstType},System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an invocation expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Invoke(System.Collections.Generic.IEnumerable{ICSharpCode.NRefactory.CSharp.Expression})">
<summary>
Builds an invocation expression using this expression as target.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.Expression.Invoke(ICSharpCode.NRefactory.CSharp.Expression[])">
<summary>
Builds an invocation expression using this expression as target.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AnonymousTypeCreateExpression">
<summary>
new { [ExpressionList] }
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ArrayCreateExpression">
<summary>
new Type[Dimensions]
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.ArrayCreateExpression.AdditionalArraySpecifiers">
<summary>
Gets additional array ranks (those without size info).
Empty for "new int[5,1]"; will contain a single element for "new int[5][]".
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ArrayInitializerExpression">
<summary>
{ Elements }
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.CSharp.ArrayInitializerExpression.IsSingleElement">
<summary>
For ease of use purposes in the resolver the ast representation
of { a, b, c } is { {a}, {b}, {c} }.
If IsSingleElement is true then this array initializer expression is a generated one.
That has no meaning in the source code (and contains no brace tokens).
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ArrayInitializerExpression.SingleArrayInitializerExpression">
<summary>
Single elements in array initializers are represented with this special class.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AsExpression">
<summary>
Expression as TypeReference
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.AssignmentExpression">
<summary>
Left Operator= Right
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.AssignmentExpression.GetCorrespondingBinaryOperator(ICSharpCode.NRefactory.CSharp.AssignmentOperatorType)">
<summary>
Gets the binary operator for the specified compound assignment operator.
Returns null if 'op' is not a compound assignment.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Assign">
<summary>left = right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Add">
<summary>left += right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Subtract">
<summary>left -= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Multiply">
<summary>left *= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Divide">
<summary>left /= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Modulus">
<summary>left %= right</summary>
</member>
<!-- Badly formed XML comment ignored for member "F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.ShiftLeft" -->
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.ShiftRight">
<summary>left >>= right</summary>
</member>
<!-- Badly formed XML comment ignored for member "F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.BitwiseAnd" -->
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.BitwiseOr">
<summary>left |= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.ExclusiveOr">
<summary>left ^= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.AssignmentOperatorType.Any">
<summary>Any operator (for pattern matching)</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.BaseReferenceExpression">
<summary>
base
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.BinaryOperatorExpression">
<summary>
Left Operator Right
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Any">
<summary>
Any binary operator (used in pattern matching)
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.BitwiseAnd">
<summary>left & right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.BitwiseOr">
<summary>left | right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.ConditionalAnd">
<summary>left && right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.ConditionalOr">
<summary>left || right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.ExclusiveOr">
<summary>left ^ right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.GreaterThan">
<summary>left > right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.GreaterThanOrEqual">
<summary>left >= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Equality">
<summary>left == right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.InEquality">
<summary>left != right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.LessThan">
<summary>left < right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.LessThanOrEqual">
<summary>left <= right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Add">
<summary>left + right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Subtract">
<summary>left - right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Multiply">
<summary>left * right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Divide">
<summary>left / right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.Modulus">
<summary>left % right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.ShiftLeft">
<summary>left << right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.ShiftRight">
<summary>left >> right</summary>
</member>
<member name="F:ICSharpCode.NRefactory.CSharp.BinaryOperatorType.NullCoalescing">
<summary>left ?? right</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.CastExpression">
<summary>
(CastTo)Expression
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.CheckedExpression">
<summary>
checked(Expression)
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ConditionalExpression">
<summary>
Condition ? TrueExpression : FalseExpression
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DefaultValueExpression">
<summary>
default(Type)
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.DirectionExpression">
<summary>
ref Expression
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.EmptyExpression">
<summary>
Type<[EMPTY]>
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IndexerExpression">
<summary>
Target[Arguments]
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.InvocationExpression">
<summary>
Target(Arguments)
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.IsExpression">
<summary>
Expression is Type
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.LambdaExpression">
<summary>
[async] Parameters => Body
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.MemberReferenceExpression">
<summary>
Target.MemberName
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.NamedArgumentExpression">
<summary>
Represents a named argument passed to a method or attribute.
name: expression
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.NamedExpression">
<summary>
name = expression
This isn't the same as 'assign' even though it has the same syntax.
This expression is used in object initializers and for named attribute arguments [Attr(FieldName = value)].
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.NullReferenceExpression">
<summary>
null
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ObjectCreateExpression">
<summary>
new Type(Arguments) { Initializer }
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ParenthesizedExpression">
<summary>
( Expression )
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.ParenthesizedExpression.ActsAsParenthesizedExpression(ICSharpCode.NRefactory.CSharp.AstNode)">
<summary>
Gets whether the expression acts like a parenthesized expression,
i.e. whether information about the expected type (for lambda type inference) flows
into the inner expression.
</summary>
<returns>Returns true for ParenthesizedExpression, CheckedExpression or UncheckedExpression; false otherwise.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.CSharp.ParenthesizedExpression.UnpackParenthesizedExpression(ICSharpCode.NRefactory.CSharp.Expression)">
<summary>
Unpacks the given expression if it is a ParenthesizedExpression, CheckedExpression or UncheckedExpression.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.PointerReferenceExpression">
<summary>
Target->MemberName
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.PrimitiveExpression">
<summary>
Represents a literal value.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.QueryContinuationClause">
<summary>
Represents a query continuation.
"(from .. select ..) into Identifier" or "(from .. group .. by ..) into Identifier"
Note that "join .. into .." is not a query continuation!
This is always the first(!!) clause in a query expression.
The tree for "from a in b select c into d select e" looks like this:
new QueryExpression {
new QueryContinuationClause {
PrecedingQuery = new QueryExpression {
new QueryFromClause(a in b),
new QuerySelectClause(c)
},
Identifier = d
},
new QuerySelectClause(e)
}
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.QueryJoinClause">
<summary>
Represents a join or group join clause.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.SizeOfExpression">
<summary>
sizeof(Type)
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.StackAllocExpression">
<summary>
stackalloc Type[Count]
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.ThisReferenceExpression">
<summary>
this
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.CSharp.TypeOfExpression">