1 write to CollectionCreation
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6443this.CollectionCreation = collectionCreation;
9 references to CollectionCreation
Microsoft.CodeAnalysis.CSharp (9)
Generated\BoundNodes.xml.Generated.cs (4)
6466if (collectionTypeKind != this.CollectionTypeKind || placeholder != this.Placeholder || collectionCreation != this.CollectionCreation || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(collectionBuilderMethod, this.CollectionBuilderMethod) || collectionBuilderInvocationPlaceholder != this.CollectionBuilderInvocationPlaceholder || collectionBuilderInvocationConversion != this.CollectionBuilderInvocationConversion || wasTargetTyped != this.WasTargetTyped || unconvertedCollectionExpression != this.UnconvertedCollectionExpression || elements != this.Elements || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11780BoundExpression? collectionCreation = node.CollectionCreation; 14044BoundExpression? collectionCreation = node.CollectionCreation; 16472new TreeDumperNode("collectionCreation", null, new TreeDumperNode[] { Visit(node.CollectionCreation, null) }),
Lowering\LocalRewriter\LocalRewriter_CollectionExpression.cs (4)
247Debug.Assert(node.CollectionCreation is null); // shouldn't have generated a constructor call 330var rewrittenReceiver = VisitExpression(node.CollectionCreation); 393Debug.Assert(node.CollectionCreation is null); 457Debug.Assert(node.CollectionCreation is null);
Operations\CSharpOperationFactory.cs (1)
1249return (expr.CollectionCreation as BoundObjectCreationExpression)?.Constructor;