1 implementation of ILabeledOperation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4142internal sealed partial class LabeledOperation : Operation, ILabeledOperation
16 references to ILabeledOperation
Microsoft.CodeAnalysis (7)
Generated\OperationKind.Generated.cs (1)
29/// <summary>Indicates an <see cref="ILabeledOperation"/>.</summary>
Generated\Operations.Generated.cs (3)
10281public override IOperation VisitLabeled(ILabeledOperation operation, object? argument) 10858public virtual void VisitLabeled(ILabeledOperation operation) => DefaultVisit(operation); 10994public virtual TResult? VisitLabeled(ILabeledOperation operation, TArgument argument) => DefaultVisit(operation, argument);
Operations\ControlFlowGraphBuilder.cs (3)
1445case ILabeledOperation { Operation: { } } labelOperation: 1452bool visitPossibleUsingDeclarationInLabel(ILabeledOperation labelOperation) 3838public override IOperation? VisitLabeled(ILabeledOperation operation, int? captureIdForResult)
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (2)
2078private ILabeledOperation CreateBoundLabelStatementOperation(BoundLabelStatement boundLabelStatement) 2086private ILabeledOperation CreateBoundLabeledStatementOperation(BoundLabeledStatement boundLabeledStatement)
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (1)
IOperation\IOperationTests_IBranchOperation.Extensions.cs (1)
43Assert.IsAssignableFrom<ILabeledOperation>(result.outer);
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
661public override void VisitLabeled(ILabeledOperation operation) 663LogString(nameof(ILabeledOperation));
Compilation\TestOperationVisitor.cs (1)
365public override void VisitLabeled(ILabeledOperation operation)
Diagnostics\OperationTestAnalyzer.cs (1)
1449ILabelSymbol label = ((ILabeledOperation)operationContext.Operation).Label;
Microsoft.CodeAnalysis.VisualBasic (1)
Operations\VisualBasicOperationFactory.vb (1)
1378Private Function CreateBoundLabelStatementOperation(boundLabelStatement As BoundLabelStatement) As ILabeledOperation
Roslyn.Compilers.VisualBasic.IOperation.UnitTests (1)
IOperation\IOperationTests_IBranchOperation.Extensions.vb (1)
38Assert.IsAssignableFrom(GetType(ILabeledOperation), result.outer)