1 write to AlternativeOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3859
this.
AlternativeOpt
= alternativeOpt;
15 references to AlternativeOpt
Microsoft.CodeAnalysis.CSharp (15)
BoundTree\BoundTreeRewriter.cs (2)
299
if (node.
AlternativeOpt
is not BoundIfStatement ifStatement)
312
alternative = ifStatement.
AlternativeOpt
;
BoundTree\BoundTreeWalker.cs (1)
239
var alternative = node.
AlternativeOpt
;
BoundTree\NullabilityRewriter.cs (1)
42
var alternative = node.
AlternativeOpt
;
Compilation\MemberSemanticModel.NodeMapBuilder.cs (1)
321
var alternative = node.
AlternativeOpt
;
FlowAnalysis\AbstractFlowPass.cs (1)
1789
var alternative = node.
AlternativeOpt
;
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
196
var alternative = node.
AlternativeOpt
;
Generated\BoundNodes.xml.Generated.cs (4)
3871
if (condition != this.Condition || consequence != this.Consequence || alternativeOpt != this.
AlternativeOpt
)
10188
this.Visit(node.
AlternativeOpt
);
11455
BoundStatement? alternativeOpt = (BoundStatement?)this.Visit(node.
AlternativeOpt
);
16012
new TreeDumperNode("alternativeOpt", null, new TreeDumperNode[] { Visit(node.
AlternativeOpt
, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
1122
var alternative = node.
AlternativeOpt
;
Lowering\LocalRewriter\LocalRewriter_IfStatement.cs (2)
34
var elseIfStatement = node.
AlternativeOpt
as BoundIfStatement;
39
rewrittenAlternative = VisitStatement(node.
AlternativeOpt
);
Operations\CSharpOperationFactory.cs (1)
1811
var alternative = boundIfStatement.
AlternativeOpt
;