1 implementation of ILabeledOperation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4515internal sealed partial class LabeledOperation : Operation, ILabeledOperation
15 references to ILabeledOperation
Microsoft.CodeAnalysis (7)
Generated\OperationKind.Generated.cs (1)
29/// <summary>Indicates an <see cref="ILabeledOperation"/>.</summary>
Generated\Operations.Generated.cs (3)
10831public override IOperation VisitLabeled(ILabeledOperation operation, object? argument) 11423public virtual void VisitLabeled(ILabeledOperation operation) => DefaultVisit(operation); 11562public virtual TResult? VisitLabeled(ILabeledOperation operation, TArgument argument) => DefaultVisit(operation, argument);
Operations\ControlFlowGraphBuilder.cs (3)
1445case ILabeledOperation { Operation: { } } labelOperation: 1452bool visitPossibleUsingDeclarationInLabel(ILabeledOperation labelOperation) 3855public override IOperation? VisitLabeled(ILabeledOperation operation, int? captureIdForResult)
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (2)
2189private ILabeledOperation CreateBoundLabelStatementOperation(BoundLabelStatement boundLabelStatement) 2197private 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;
Roslyn.Compilers.VisualBasic.IOperation.UnitTests (1)
IOperation\IOperationTests_IBranchOperation.Extensions.vb (1)
38Assert.IsAssignableFrom(GetType(ILabeledOperation), result.outer)