1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4271
this.
Body
= body;
16 references to Body
Microsoft.CodeAnalysis.CSharp (16)
BoundTree\BoundNode_Source.cs (1)
62
appendSource(catchBlock.
Body
);
CodeGen\EmitStatement.cs (1)
1215
EmitBlock(catchBlock.
Body
);
CodeGen\Optimizer.cs (2)
1741
var boundBlock = (BoundBlock)this.Visit(node.
Body
);
2292
var body = node.
Body
;
FlowAnalysis\AbstractFlowPass.cs (1)
1979
VisitStatement(catchBlock.
Body
);
Generated\BoundNodes.xml.Generated.cs (5)
4288
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)
10224
this.Visit(node.
Body
);
11437
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
13468
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
15937
new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.
Body
, null) }),
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
653
handlerStatements.Add((BoundStatement)this.Visit(node.
Body
));
Lowering\ClosureConversion\ClosureConversion.cs (1)
1276
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)
723
BoundBlock body = (BoundBlock)this.Visit(node.
Body
);
Operations\CSharpOperationFactory.cs (1)
2011
IBlockOperation handler = (IBlockOperation)Create(boundCatchBlock.
Body
);