39 references to ContainingType
Microsoft.CodeAnalysis.CSharp (39)
Binder\Binder.cs (1)
606ReportDiagnosticsIfObsolete(diagnostics, symbol, node, hasBaseReceiver, this.ContainingMemberOrLambda, this.ContainingType, this.Flags);
Binder\Binder.ValueChecks.cs (2)
1553Error(diagnostics, ErrorCode.ERR_BadProtectedAccess, node, propertySymbol, accessThroughType, this.ContainingType); 1602Error(diagnostics, ErrorCode.ERR_BadProtectedAccess, node, propertySymbol, accessThroughType, this.ContainingType);
Binder\Binder_Attributes.cs (1)
618var propertySymbol = ((PropertySymbol)namedArgumentNameSymbol).GetLeastOverriddenProperty(this.ContainingType);
Binder\Binder_Conversions.cs (2)
1183if (InFieldInitializer && !ContainingType!.IsScriptClass || InConstructorInitializer || InAttributeArgument) 1205var containingType = this.ContainingType;
Binder\Binder_Crefs.cs (2)
421if (containerType.Name == memberName && (hasParameterList || containerType.Arity == 0 || !TypeSymbol.Equals(this.ContainingType, containerType.OriginalDefinition, TypeCompareKind.ConsiderEverything2))) 432NamedTypeSymbol? binderContainingType = this.ContainingType;
Binder\Binder_Deconstruct.cs (1)
942BoundThisReference receiver = ThisReference(designation, this.ContainingType, hasErrors: false,
Binder\Binder_Expressions.cs (11)
1755var currentType = this.ContainingType; 1855ContainingType, 2071var currentType = this.ContainingType; 2125if (this.ContainingType.TypeKind == TypeKind.Submission 2271return ThisReference(node, this.ContainingType, hasErrors); 2296TypeSymbol baseType = this.ContainingType is null ? null : this.ContainingType.BaseTypeNoUseSiteDiagnostics; 2310else if (this.ContainingType is null || node.Parent is null || (node.Parent.Kind() != SyntaxKind.SimpleMemberAccessExpression && node.Parent.Kind() != SyntaxKind.ElementAccessExpression)) 3043foreach (Symbol member in ContainingType?.GetMembers(identifier) ?? ImmutableArray<Symbol>.Empty) 5601NamedTypeSymbol containingType = this.ContainingType; 7583var containingType = this.ContainingType;
Binder\Binder_Invocation.cs (5)
346receiverOpt: new BoundTypeExpression(node, null, this.ContainingType).MakeCompilerGenerated(), 892else if (call.ReceiverOpt.Kind == BoundKind.BaseReference && this.ContainingType.IsRestrictedType()) 894SymbolDistinguisher distinguisher = new SymbolDistinguisher(compilation, this.ContainingType, call.Method.ContainingType); 1623: this.ContainingType; 1837var methodContainer = expr.Type ?? this.ContainingType;
Binder\Binder_Lookup.cs (3)
1458diagInfo = new CSDiagnosticInfo(ErrorCode.ERR_BadProtectedAccess, unwrappedSymbol, accessThroughType, this.ContainingType); 1551var property = ((PropertySymbol)symbol).GetLeastOverriddenProperty(this.ContainingType); 1558var @event = ((EventSymbol)symbol).GetLeastOverriddenEvent(this.ContainingType);
Binder\Binder_Statements.cs (4)
1756var leastOverridden = (EventSymbol)eventSymbol.GetLeastOverriddenMember(this.ContainingType); 1796return this.ContainingType; 3635&& ContainingType.IsDefaultValueTypeConstructor(initializer); 3655ContainingType is SourceMemberContainerTypeSymbol { PrimaryConstructor: not null };
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
1286for (NamedTypeSymbol curr = outerBinder.ContainingType; (object)curr != null; curr = curr.ContainingType)
Binder\ExpressionVariableFinder.cs (3)
542NamedTypeSymbol container = _scopeBinder.ContainingType; 563NamedTypeSymbol container = _scopeBinder.ContainingType; 588NamedTypeSymbol container = _scopeBinder.ContainingType;
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
905var leastOverriddenMember = (TMember)member.GetLeastOverriddenMember(_binder.ContainingType);
Compilation\CSharpSemanticModel.cs (2)
1591TypeSymbol containingType = binder.ContainingType; 3671NamedTypeSymbol containingType = binder.ContainingType;