1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4160
this.
Body
= body;
16 references to Body
Microsoft.CodeAnalysis.CSharp (16)
BoundTree\BoundNode_Source.cs (1)
47
appendSource(catchBlock.
Body
);
CodeGen\EmitStatement.cs (1)
1190
EmitBlock(catchBlock.
Body
);
CodeGen\Optimizer.cs (2)
1674
var boundBlock = (BoundBlock)this.Visit(node.
Body
);
2169
var body = node.
Body
;
FlowAnalysis\AbstractFlowPass.cs (1)
1838
VisitStatement(catchBlock.
Body
);
Generated\BoundNodes.xml.Generated.cs (5)
4177
if (locals != this.Locals || exceptionSourceOpt != this.ExceptionSourceOpt || !TypeSymbol.Equals(exceptionTypeOpt, this.ExceptionTypeOpt, TypeCompareKind.ConsiderEverything) || exceptionFilterPrologueOpt != this.ExceptionFilterPrologueOpt || exceptionFilterOpt != this.ExceptionFilterOpt || body != this.
Body
|| isSynthesizedAsyncCatchAll != this.IsSynthesizedAsyncCatchAll)
9867
this.Visit(node.
Body
);
11042
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
13001
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
15377
new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.
Body
, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
622
handlerStatements.Add((BoundStatement)this.Visit(node.
Body
));
Lowering\ClosureConversion\ClosureConversion.cs (1)
1260
var rewrittenBlock = (BoundBlock)this.Visit(node.
Body
);
Lowering\LocalRewriter\LocalRewriter_TryStatement.cs (1)
88
BoundBlock? rewrittenBody = (BoundBlock?)this.Visit(node.
Body
);
Lowering\MethodToClassRewriter.cs (1)
141
(BoundBlock?)this.Visit(node.
Body
)!,
Lowering\SpillSequenceSpiller.cs (1)
652
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
Operations\CSharpOperationFactory.cs (1)
1900
IBlockOperation handler = (IBlockOperation)Create(boundCatchBlock.
Body
);