2 writes to RefKind
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
923
this.
RefKind
= refKind;
929
this.
RefKind
= refKind;
9 references to RefKind
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder.ValueChecks.cs (1)
5778
var dupRefKind = ((BoundDup)expression).
RefKind
;
CodeGen\EmitAddress.cs (1)
38
Debug.Assert(((BoundDup)expression).
RefKind
!= RefKind.None, "taking address of a stack value?");
CodeGen\EmitExpression.cs (3)
779
if (expression.
RefKind
== RefKind.None)
2226
return ((BoundDup)receiver).
RefKind
!= RefKind.None;
3110
Debug.Assert(((BoundDup)expression).
RefKind
!= RefKind.None);
Generated\BoundNodes.xml.Generated.cs (4)
939
if (refKind != this.
RefKind
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10888
return node.Update(node.
RefKind
, type);
12425
BoundDup updatedNode = node.Update(node.
RefKind
, infoAndType.Type);
15093
new TreeDumperNode("refKind", node.
RefKind
, null),