8 references to Type
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder.ValueChecks.cs (1)
545
propertyAccess.
Type
);
Generated\BoundNodes.xml.Generated.cs (4)
7363
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))
11942
TypeSymbol? type = this.VisitType(node.
Type
);
14460
updatedNode = node.Update(receiverOpt, node.InitialBindingReceiverIsSubjectToCloning, propertySymbol, node.AutoPropertyAccessorKind, node.ResultKind, node.
Type
);
16729
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (1)
602
propertyAccess.InitialBindingReceiverIsSubjectToCloning, propertyAccess.PropertySymbol, propertyAccess.AutoPropertyAccessorKind, propertyAccess.ResultKind, propertyAccess.
Type
);
Lowering\LocalRewriter\LocalRewriter_PropertyAccess.cs (1)
23
return MakePropertyAccess(node.Syntax, rewrittenReceiverOpt, node.PropertySymbol, node.ResultKind, node.
Type
, isLeftOfAssignment, node);
Lowering\MethodToClassRewriter.cs (1)
226
return node.Update(rewrittenReceiver, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, rewrittenPropertySymbol, node.AutoPropertyAccessorKind, node.ResultKind, VisitType(node.
Type
));