1 implementation of HandlerCreationHasSuccessParameter
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10099
public bool
HandlerCreationHasSuccessParameter
{ get; }
7 references to HandlerCreationHasSuccessParameter
Microsoft.CodeAnalysis (5)
Generated\Operations.Generated.cs (2)
3655
/// when this is true and <see cref="
HandlerCreationHasSuccessParameter
" /> is true, then the first part in nested <see cref="IInterpolatedStringOperation.Parts" /> is conditionally
3656
/// run. If this is true and <see cref="
HandlerCreationHasSuccessParameter
" /> is false, then the first part is unconditionally run.
Operations\ControlFlowGraphBuilder.cs (3)
6799
if (operation.
HandlerCreationHasSuccessParameter
|| operation.HandlerAppendCallsReturnBool)
6808
if (operation.
HandlerCreationHasSuccessParameter
)
6834
if (operation.
HandlerCreationHasSuccessParameter
)
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1891
LogString($" (HandlerAppendCallsReturnBool: {operation.HandlerAppendCallsReturnBool}, HandlerCreationHasSuccessParameter: {operation.
HandlerCreationHasSuccessParameter
})");
Compilation\TestOperationVisitor.cs (1)
1325
_ = operation.
HandlerCreationHasSuccessParameter
;