1 write to AlternativeOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3860
this.
AlternativeOpt
= alternativeOpt;
15 references to AlternativeOpt
Microsoft.CodeAnalysis.CSharp (15)
BoundTree\BoundTreeRewriter.cs (2)
157
if (node.
AlternativeOpt
is not BoundIfStatement ifStatement)
170
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)
1782
var alternative = node.
AlternativeOpt
;
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
196
var alternative = node.
AlternativeOpt
;
Generated\BoundNodes.xml.Generated.cs (4)
3872
if (condition != this.Condition || consequence != this.Consequence || alternativeOpt != this.
AlternativeOpt
)
10153
this.Visit(node.
AlternativeOpt
);
11364
BoundStatement? alternativeOpt = (BoundStatement?)this.Visit(node.
AlternativeOpt
);
15833
new TreeDumperNode("alternativeOpt", null, new TreeDumperNode[] { Visit(node.
AlternativeOpt
, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
1078
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
;