2 instantiations of BoundPropertyEqualsValue
Microsoft.CodeAnalysis.CSharp (2)
Compilation\InitializerSemanticModel.cs (1)
168return new BoundPropertyEqualsValue(result.Syntax, property, result.Locals, result.Value);
Generated\BoundNodes.xml.Generated.cs (1)
358var result = new BoundPropertyEqualsValue(this.Syntax, property, locals, value, this.HasErrors);
13 references to BoundPropertyEqualsValue
Microsoft.CodeAnalysis.CSharp (13)
BoundTree\BoundNode.cs (1)
517public override BoundNode? VisitPropertyEqualsValue(BoundPropertyEqualsValue node)
FlowAnalysis\AbstractFlowPass.cs (1)
3552public override BoundNode VisitPropertyEqualsValue(BoundPropertyEqualsValue node)
Generated\BoundNodes.xml.Generated.cs (9)
354public BoundPropertyEqualsValue Update(PropertySymbol property, ImmutableArray<LocalSymbol> locals, BoundExpression value) 358var result = new BoundPropertyEqualsValue(this.Syntax, property, locals, value, this.HasErrors); 8833return VisitPropertyEqualsValue((BoundPropertyEqualsValue)node, arg); 9303public virtual R VisitPropertyEqualsValue(BoundPropertyEqualsValue node, A arg) => this.DefaultVisit(node, arg); 9539public virtual BoundNode? VisitPropertyEqualsValue(BoundPropertyEqualsValue node) => this.DefaultVisit(node); 9779public override BoundNode? VisitPropertyEqualsValue(BoundPropertyEqualsValue node) 10802public override BoundNode? VisitPropertyEqualsValue(BoundPropertyEqualsValue node) 12234public override BoundNode? VisitPropertyEqualsValue(BoundPropertyEqualsValue node) 14970public override TreeDumperNode VisitPropertyEqualsValue(BoundPropertyEqualsValue node, object? arg) => new TreeDumperNode("propertyEqualsValue", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
159return CreateBoundPropertyEqualsValueOperation((BoundPropertyEqualsValue)boundNode); 1733private IPropertyInitializerOperation CreateBoundPropertyEqualsValueOperation(BoundPropertyEqualsValue boundPropertyEqualsValue)