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