40 references to ContainingType
Microsoft.CodeAnalysis.CSharp (40)
Binder\Binder.cs (1)
611
ReportDiagnosticsIfObsolete(diagnostics, symbol, node, hasBaseReceiver, this.ContainingMemberOrLambda, this.
ContainingType
, this.Flags);
Binder\Binder.ValueChecks.cs (2)
1786
Error(diagnostics, ErrorCode.ERR_BadProtectedAccess, node, propertySymbol, accessThroughType, this.
ContainingType
);
1835
Error(diagnostics, ErrorCode.ERR_BadProtectedAccess, node, propertySymbol, accessThroughType, this.
ContainingType
);
Binder\Binder_Attributes.cs (1)
636
var propertySymbol = ((PropertySymbol)namedArgumentNameSymbol).GetLeastOverriddenProperty(this.
ContainingType
);
Binder\Binder_Crefs.cs (2)
421
if (containerType.Name == memberName && (hasParameterList || containerType.Arity == 0 || !TypeSymbol.Equals(this.
ContainingType
, containerType.OriginalDefinition, TypeCompareKind.ConsiderEverything2)))
432
NamedTypeSymbol? binderContainingType = this.
ContainingType
;
Binder\Binder_Deconstruct.cs (1)
942
BoundThisReference receiver = ThisReference(designation, this.
ContainingType
, hasErrors: false,
Binder\Binder_Expressions.cs (13)
1440
Debug.Assert(
ContainingType
is { });
1728
ContainingType
is SourceMemberContainerTypeSymbol { IsRecord: false, IsRecordStruct: false, PrimaryConstructor: SynthesizedPrimaryConstructor { ParameterCount: not 0 } primaryConstructor, OriginalDefinition: var containingTypeDefinition } &&
1908
var currentType = this.
ContainingType
;
2008
ContainingType
,
2255
var currentType = this.
ContainingType
;
2320
if (this.
ContainingType
.TypeKind == TypeKind.Submission
2466
return ThisReference(node, this.
ContainingType
, hasErrors);
2506
TypeSymbol baseType = this.
ContainingType
is null ? null : this.
ContainingType
.BaseTypeNoUseSiteDiagnostics;
2520
else if (this.
ContainingType
is null || node.Parent is null || (node.Parent.Kind() != SyntaxKind.SimpleMemberAccessExpression && node.Parent.Kind() != SyntaxKind.ElementAccessExpression))
3259
foreach (Symbol member in
ContainingType
?.GetMembers(identifier) ?? ImmutableArray<Symbol>.Empty)
6580
NamedTypeSymbol containingType = this.
ContainingType
;
8665
var containingType = this.
ContainingType
;
Binder\Binder_Invocation.cs (6)
425
Debug.Assert(
ContainingType
is not null);
434
receiverOpt: new BoundTypeExpression(node, null, this.
ContainingType
).MakeCompilerGenerated(),
1056
else if (call.ReceiverOpt.Kind == BoundKind.BaseReference && this.
ContainingType
.IsRestrictedType())
1058
SymbolDistinguisher distinguisher = new SymbolDistinguisher(compilation, this.
ContainingType
, call.Method.ContainingType);
1945
: this.
ContainingType
;
2173
var methodContainer = expr.Type ?? this.
ContainingType
;
Binder\Binder_Lookup.cs (3)
1458
diagInfo = new CSDiagnosticInfo(ErrorCode.ERR_BadProtectedAccess, unwrappedSymbol, accessThroughType, this.
ContainingType
);
1551
var property = ((PropertySymbol)symbol).GetLeastOverriddenProperty(this.
ContainingType
);
1558
var @event = ((EventSymbol)symbol).GetLeastOverriddenEvent(this.
ContainingType
);
Binder\Binder_Statements.cs (4)
1747
var leastOverridden = (EventSymbol)eventSymbol.GetLeastOverriddenMember(this.
ContainingType
);
1805
return this.
ContainingType
;
3733
&&
ContainingType
.IsDefaultValueTypeConstructor(initializer);
3753
ContainingType
is SourceMemberContainerTypeSymbol { HasPrimaryConstructor: true };
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
1311
for (NamedTypeSymbol curr = outerBinder.
ContainingType
; (object)curr != null; curr = curr.ContainingType)
Binder\ExpressionVariableFinder.cs (3)
599
NamedTypeSymbol container = _scopeBinder.
ContainingType
;
620
NamedTypeSymbol container = _scopeBinder.
ContainingType
;
645
NamedTypeSymbol container = _scopeBinder.
ContainingType
;
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
1139
var leastOverriddenMember = (TMember)member.GetLeastOverriddenMember(_binder.
ContainingType
);
Compilation\CSharpSemanticModel.cs (2)
1591
TypeSymbol containingType = binder.
ContainingType
;
3682
NamedTypeSymbol containingType = binder.
ContainingType
;