1 implementation of ICollectionExpressionOperation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10709
internal sealed partial class CollectionExpressionOperation : Operation,
ICollectionExpressionOperation
9 references to ICollectionExpressionOperation
Microsoft.CodeAnalysis (7)
Generated\OperationKind.Generated.cs (1)
285
/// <summary>Indicates an <see cref="
ICollectionExpressionOperation
"/>.</summary>
Generated\Operations.Generated.cs (5)
4018
/// specified by a <c>[CollectionBuilder]</c> attribute. This is distinct from <see cref="
ICollectionExpressionOperation
.Elements" />
4020
/// in <see cref="
ICollectionExpressionOperation
.ConstructArguments" /> when the construction method is a collection builder method,
11468
public override IOperation VisitCollectionExpression(
ICollectionExpressionOperation
operation, object? argument)
11623
public virtual void VisitCollectionExpression(
ICollectionExpressionOperation
operation) => DefaultVisit(operation);
11764
public virtual TResult? VisitCollectionExpression(
ICollectionExpressionOperation
operation, TArgument argument) => DefaultVisit(operation, argument);
Operations\ControlFlowGraphBuilder.cs (1)
6553
public override IOperation? VisitCollectionExpression(
ICollectionExpressionOperation
operation, int? argument)
Microsoft.CodeAnalysis.CSharp (1)
Operations\CSharpOperationFactory.cs (1)
1263
private
ICollectionExpressionOperation
CreateBoundCollectionExpression(BoundCollectionExpression expr)
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (1)
492
if (state.SemanticModel.GetOperation(node, cancellationToken) is not
ICollectionExpressionOperation
collectionExpression)