2 writes to Data
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
1109
this.
Data
= data;
1118
this.
Data
= data;
17 references to Data
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (1)
647
? typeOrValue.
Data
.ValueExpression
Binder\Binder_Expressions.cs (1)
9714
bool useType = IsInstance(typeOrValue.
Data
.ValueSymbol) && !HasThis(isExplicit: false, inStaticContext: out inStaticContext);
Binder\Binder_Invocation.cs (8)
447
bool useType = IsInstance(typeOrValue.
Data
.ValueSymbol) && !HasThis(isExplicit: false, inStaticContext: out inStaticContext);
1841
diagnostics.AddRange(typeOrValue.
Data
.TypeDiagnostics);
1843
foreach (Diagnostic d in typeOrValue.
Data
.ValueDiagnostics.Diagnostics)
1848
!(d.Arguments is [ParameterSymbol shadowedParameter] && shadowedParameter.Type.Equals(typeOrValue.
Data
.ValueExpression.Type, TypeCompareKind.AllIgnoreOptions))) // If the type and the name match, we would resolve to the same type rather than a value at the end.
1855
return typeOrValue.
Data
.TypeExpression;
1859
diagnostics.AddRange(typeOrValue.
Data
.ValueDiagnostics);
1860
return CheckValue(typeOrValue.
Data
.ValueExpression, BindValueKind.RValue, diagnostics);
1885
return typeOrValueExpression.
Data
.ValueExpression;
Compilation\CSharpSemanticModel.cs (1)
3426
BoundExpression valueExpression = ((BoundTypeOrValueExpression)boundNode).
Data
.ValueExpression;
FlowAnalysis\AbstractFlowPass.cs (1)
1652
return this.Visit(node.
Data
.ValueExpression);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
251
Visit(node.
Data
.ValueExpression);
Generated\BoundNodes.xml.Generated.cs (4)
1129
if (data != this.
Data
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10922
return node.Update(node.
Data
, type);
12490
BoundTypeOrValueExpression updatedNode = node.Update(node.
Data
, infoAndType.Type!);
15142
new TreeDumperNode("data", node.
Data
, null),