13 references to Unknown
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder.ValueChecks.cs (1)
4646
Debug.Assert(expr.AccessorKind != AccessorKind.
Unknown
);
Binder\Binder_Attributes.cs (1)
581
lvalue = new BoundPropertyAccess(nameSyntax, receiverOpt: null, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, propertySymbol, autoPropertyAccessorKind: AccessorKind.
Unknown
, resultKind, namedArgumentType);
Binder\Binder_Expressions.cs (3)
5863
AccessorKind accessorKind = AccessorKind.
Unknown
;
8687
return new BoundPropertyAccess(node, receiver, initialBindingReceiverIsSubjectToCloning: ReceiverIsSubjectToCloning(receiver, propertySymbol), propertySymbol, autoPropertyAccessorKind: AccessorKind.
Unknown
, lookupResult, propertySymbol.Type, hasErrors: (hasErrors || hasError));
9870
AccessorKind.
Unknown
,
Binder\Binder_Patterns.cs (1)
366
lengthAccess = new BoundPropertyAccess(node, receiverPlaceholder, initialBindingReceiverIsSubjectToCloning: ThreeState.False, lengthProperty, autoPropertyAccessorKind: AccessorKind.
Unknown
, LookupResultKind.Viable, lengthProperty.Type) { WasCompilerGenerated = true };
BoundTree\Constructors.cs (1)
283
accessorKind: AccessorKind.
Unknown
,
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (2)
69
Debug.Assert(node.AccessorKind != AccessorKind.
Unknown
);
80
Debug.Assert(node.AccessorKind != AccessorKind.
Unknown
);
Lowering\LocalRewriter\LocalRewriter_PropertyAccess.cs (4)
58
oldNodeOpt.Update(rewrittenReceiverOpt, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, propertySymbol, autoPropertyAccessorKind: AccessorKind.
Unknown
, resultKind, type) :
59
new BoundPropertyAccess(syntax, rewrittenReceiverOpt, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, propertySymbol, autoPropertyAccessorKind: AccessorKind.
Unknown
, resultKind, type);
86
oldNodeOpt.Update(rewrittenReceiver, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, property, autoPropertyAccessorKind: AccessorKind.
Unknown
, LookupResultKind.Viable, property.Type) :
87
new BoundPropertyAccess(syntax, rewrittenReceiver, initialBindingReceiverIsSubjectToCloning: ThreeState.Unknown, property, autoPropertyAccessorKind: AccessorKind.
Unknown
, LookupResultKind.Viable, property.Type);