1 write to Argument
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7778this.Argument = argument;
10 references to Argument
Microsoft.CodeAnalysis.CSharp (10)
BoundTree\BoundNameOfOperator.cs (2)
13Debug.Assert(!Binder.IsTypeOrValueExpression(Argument)); 14Debug.Assert(!Binder.IsMethodGroupWithTypeOrValueReceiver(Argument));
BoundTree\Expression.cs (1)
91protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Argument);
FlowAnalysis\AbstractFlowPass.cs (1)
3502Visit(node.Argument);
Generated\BoundNodes.xml.Generated.cs (5)
7795if (argument != this.Argument || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10721this.Visit(node.Argument); 12215BoundExpression argument = (BoundExpression)this.Visit(node.Argument); 14808BoundExpression argument = (BoundExpression)this.Visit(node.Argument); 17044new TreeDumperNode("argument", null, new TreeDumperNode[] { Visit(node.Argument, null) }),
Operations\CSharpOperationFactory.cs (1)
1661IOperation argument = Create(boundNameOfOperator.Argument);