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)
345
var result = new
BoundPropertyEqualsValue
(this.Syntax, property, locals, value, this.HasErrors);
12 references to BoundPropertyEqualsValue
Microsoft.CodeAnalysis.CSharp (12)
FlowAnalysis\AbstractFlowPass.cs (1)
3680
public override BoundNode VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node)
Generated\BoundNodes.xml.Generated.cs (9)
341
public
BoundPropertyEqualsValue
Update(PropertySymbol property, ImmutableArray<LocalSymbol> locals, BoundExpression value)
345
var
result = new BoundPropertyEqualsValue(this.Syntax, property, locals, value, this.HasErrors);
9079
return VisitPropertyEqualsValue((
BoundPropertyEqualsValue
)node, arg);
9559
public virtual R VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node, A arg) => this.DefaultVisit(node, arg);
9800
public virtual BoundNode? VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node) => this.DefaultVisit(node);
10045
public override BoundNode? VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node)
11108
public override BoundNode? VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node)
12723
public override BoundNode? VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node)
15485
public override TreeDumperNode VisitPropertyEqualsValue(
BoundPropertyEqualsValue
node, object? arg) => new TreeDumperNode("propertyEqualsValue", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
158
return CreateBoundPropertyEqualsValueOperation((
BoundPropertyEqualsValue
)boundNode);
1799
private IPropertyInitializerOperation CreateBoundPropertyEqualsValueOperation(
BoundPropertyEqualsValue
boundPropertyEqualsValue)