1 write to ConstructorArguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6246this.ConstructorArguments = constructorArguments;
10 references to ConstructorArguments
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_Attributes.cs (1)
304var arguments = boundAttribute.ConstructorArguments;
BoundTree\Expression.cs (1)
76protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.ConstructorArguments.AddRange(StaticCast<BoundExpression>.From(this.NamedArguments)));
FlowAnalysis\DefiniteAssignment.cs (1)
1921foreach (var attributeArgument in boundAttribute.ConstructorArguments)
FlowAnalysis\NullableWalker.cs (1)
12038VisitArguments(node, node.ConstructorArguments, ImmutableArray<RefKind>.Empty, node.Constructor, argsToParamsOpt: node.ConstructorArgumentsToParamsOpt, defaultArguments: node.ConstructorDefaultArguments,
Generated\BoundNodes.xml.Generated.cs (5)
6270if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(constructor, this.Constructor) || constructorArguments != this.ConstructorArguments || constructorArgumentNamesOpt != this.ConstructorArgumentNamesOpt || constructorArgumentsToParamsOpt != this.ConstructorArgumentsToParamsOpt || constructorExpanded != this.ConstructorExpanded || constructorDefaultArguments != this.ConstructorDefaultArguments || namedArguments != this.NamedArguments || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10472this.VisitList(node.ConstructorArguments); 11753ImmutableArray<BoundExpression> constructorArguments = this.VisitList(node.ConstructorArguments); 13970ImmutableArray<BoundExpression> constructorArguments = this.VisitList(node.ConstructorArguments); 16418new TreeDumperNode("constructorArguments", null, from x in node.ConstructorArguments select Visit(x, null)),
Operations\CSharpOperationFactory_Methods.cs (1)
229attribute.ConstructorArguments,