1 implementation of ILabeledOperation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4555
internal sealed partial class LabeledOperation : Operation,
ILabeledOperation
12 references to ILabeledOperation
Microsoft.CodeAnalysis (7)
Generated\OperationKind.Generated.cs (1)
30
/// <summary>Indicates an <see cref="
ILabeledOperation
"/>.</summary>
Generated\Operations.Generated.cs (3)
10903
public override IOperation VisitLabeled(
ILabeledOperation
operation, object? argument)
11500
public virtual void VisitLabeled(
ILabeledOperation
operation) => DefaultVisit(operation);
11641
public virtual TResult? VisitLabeled(
ILabeledOperation
operation, TArgument argument) => DefaultVisit(operation, argument);
Operations\ControlFlowGraphBuilder.cs (3)
1454
case
ILabeledOperation
{ Operation: { } } labelOperation:
1461
bool visitPossibleUsingDeclarationInLabel(
ILabeledOperation
labelOperation)
3865
public override IOperation? VisitLabeled(
ILabeledOperation
operation, int? captureIdForResult)
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\roslyn\src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\DataFlowOperationVisitor.cs (2)
3979
public sealed override TAbstractAnalysisValue VisitLabeled(
ILabeledOperation
operation, object? argument)
3981
throw new NotSupportedException($"'{nameof(
ILabeledOperation
)}' must have been lowered in the CFG");
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (2)
2255
private
ILabeledOperation
CreateBoundLabelStatementOperation(BoundLabelStatement boundLabelStatement)
2263
private
ILabeledOperation
CreateBoundLabeledStatementOperation(BoundLabeledStatement boundLabeledStatement)
Roslyn.Diagnostics.Analyzers (1)
AbstractDoNotCopyValue.cs (1)
895
public override void VisitLabeled(
ILabeledOperation
operation)