2 instantiations of BoundNameOfOperator
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Invocation.cs (1)
1911return new BoundNameOfOperator(node, boundArgument, ConstantValue.Create(name), Compilation.GetSpecialType(SpecialType.System_String));
Generated\BoundNodes.xml.Generated.cs (1)
7448var result = new BoundNameOfOperator(this.Syntax, argument, constantValueOpt, type, this.HasErrors);
17 references to BoundNameOfOperator
Microsoft.CodeAnalysis.CSharp (17)
BoundTree\BoundTreeVisitors.cs (1)
128return VisitNameOfOperator(node as BoundNameOfOperator, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3270public override BoundNode VisitNameOfOperator(BoundNameOfOperator node)
FlowAnalysis\AbstractRegionDataFlowPass.cs (1)
52public override BoundNode VisitNameOfOperator(BoundNameOfOperator node)
FlowAnalysis\NullableWalker.cs (1)
10956public override BoundNode? VisitNameOfOperator(BoundNameOfOperator node)
Generated\BoundNodes.xml.Generated.cs (10)
7444public BoundNameOfOperator Update(BoundExpression argument, ConstantValue constantValueOpt, TypeSymbol type) 7448var result = new BoundNameOfOperator(this.Syntax, argument, constantValueOpt, type, this.HasErrors); 8903return VisitNameOfOperator((BoundNameOfOperator)node, arg); 9164public virtual R VisitNameOfOperator(BoundNameOfOperator node, A arg) => this.DefaultVisit(node, arg); 9392public virtual BoundNode? VisitNameOfOperator(BoundNameOfOperator node) => this.DefaultVisit(node); 10272public override BoundNode? VisitNameOfOperator(BoundNameOfOperator node) 11575public override BoundNode? VisitNameOfOperator(BoundNameOfOperator node) 14060public override BoundNode? VisitNameOfOperator(BoundNameOfOperator node) 14063BoundNameOfOperator updatedNode; 16220public override TreeDumperNode VisitNameOfOperator(BoundNameOfOperator node, object? arg) => new TreeDumperNode("nameOfOperator", null, new TreeDumperNode[]
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
831public override BoundNode VisitNameOfOperator(BoundNameOfOperator node)
Operations\CSharpOperationFactory.cs (2)
141return CreateBoundNameOfOperatorOperation((BoundNameOfOperator)boundNode); 1590private INameOfOperation CreateBoundNameOfOperatorOperation(BoundNameOfOperator boundNameOfOperator)