1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4749this.Body = body;
11 references to Body
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Initializers.cs (2)
270var labeledStatementBody = ((BoundLabeledStatement)statement).Body; 273labeledStatementBody = ((BoundLabeledStatement)labeledStatementBody).Body;
FlowAnalysis\AbstractFlowPass.cs (1)
3361VisitStatement(node.Body);
FlowAnalysis\ControlFlowPass.cs (1)
332VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (4)
4760if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(label, this.Label) || body != this.Body) 10250this.Visit(node.Body); 11501BoundStatement body = (BoundStatement)this.Visit(node.Body); 16040new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_Block.cs (1)
113return MakeLabeledStatement(labelStatement, VisitPossibleUsingDeclaration(labelStatement.Body, statements, statementIndex, out replacedLocalDeclarations));
Lowering\LocalRewriter\LocalRewriter_LabeledStatement.cs (1)
18var rewrittenBody = VisitStatement(node.Body);
Operations\CSharpOperationFactory.cs (1)
2200IOperation labeledStatement = Create(boundLabeledStatement.Body);