1 implementation of Body
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4926public IBlockOperation? Body { get; }
8 references to Body
Microsoft.AspNetCore.App.Analyzers (2)
RouteHandlers\RouteHandlerAnalyzer.cs (2)
131if (methodOperation is ILocalFunctionOperation { Body: not null } localFunction) 139localFunction.Body,
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
6455VisitMethodBodies(operation.Body, operation.IgnoredBody);
Microsoft.CodeAnalysis.Test.Utilities (5)
Compilation\OperationTreeVerifier.cs (3)
1802if (operation.Body != null) 1806Visit(operation.Body, "Body"); 1812Visit(operation.Body);
Compilation\TestOperationVisitor.cs (2)
955if (operation.Body != null) 958Assert.Same(operation.Body, children[0]);