1 write to AutoPropertyAccessorKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7348
this.
AutoPropertyAccessorKind
= autoPropertyAccessorKind;
8 references to AutoPropertyAccessorKind
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Statements.cs (1)
1759
return AccessingAutoPropertyFromConstructor(propertyAccess.ReceiverOpt, propertyAccess.PropertySymbol, fromMember, propertyAccess.
AutoPropertyAccessorKind
);
Generated\BoundNodes.xml.Generated.cs (5)
7364
if (receiverOpt != this.ReceiverOpt || initialBindingReceiverIsSubjectToCloning != this.InitialBindingReceiverIsSubjectToCloning || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(propertySymbol, this.PropertySymbol) || autoPropertyAccessorKind != this.
AutoPropertyAccessorKind
|| resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11980
return node.Update(receiverOpt, node.InitialBindingReceiverIsSubjectToCloning, node.PropertySymbol, node.
AutoPropertyAccessorKind
, node.ResultKind, type);
14492
updatedNode = node.Update(receiverOpt, node.InitialBindingReceiverIsSubjectToCloning, propertySymbol, node.
AutoPropertyAccessorKind
, node.ResultKind, infoAndType.Type!);
14497
updatedNode = node.Update(receiverOpt, node.InitialBindingReceiverIsSubjectToCloning, propertySymbol, node.
AutoPropertyAccessorKind
, node.ResultKind, node.Type);
16764
new TreeDumperNode("autoPropertyAccessorKind", node.
AutoPropertyAccessorKind
, null),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (1)
602
propertyAccess.InitialBindingReceiverIsSubjectToCloning, propertyAccess.PropertySymbol, propertyAccess.
AutoPropertyAccessorKind
, propertyAccess.ResultKind, propertyAccess.Type);
Lowering\MethodToClassRewriter.cs (1)
226
return node.Update(rewrittenReceiver, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, rewrittenPropertySymbol, node.
AutoPropertyAccessorKind
, node.ResultKind, VisitType(node.Type));