1 implementation of HandlerCreation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9725
public IOperation
HandlerCreation
{ get; }
7 references to HandlerCreation
Microsoft.CodeAnalysis (4)
Generated\Operations.Generated.cs (1)
3378
/// True if the last parameter of <see cref="
HandlerCreation
" /> is an out <see langword="bool" /> parameter that will be checked before executing the code in
Operations\ControlFlowGraphBuilder.cs (3)
6573
Debug.Assert(operation.
HandlerCreation
is IObjectCreationOperation);
6575
var arguments = ((IObjectCreationOperation)operation.
HandlerCreation
).Arguments;
6594
VisitAndCapture(operation.
HandlerCreation
, handlerCaptureId);
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1856
Visit(operation.
HandlerCreation
, "Creation");
Compilation\TestOperationVisitor.cs (2)
1303
IEnumerable<IOperation> children = new[] { operation.
HandlerCreation
, operation.Content };
1305
Assert.True(operation.
HandlerCreation
is IObjectCreationOperation or IDynamicObjectCreationOperation or IInvalidOperation);