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