10 references to TypeSymbol
Microsoft.VisualStudio.LanguageServices.Implementation (10)
CodeModel\ExternalElements\AbstractExternalCodeType.cs (7)
32var type = TypeSymbol; 59var typeSymbol = TypeSymbol; 86get { return TypeSymbol.IsAbstract; } 96get { return TypeSymbol.IsSealed; } 101get { return ExternalMemberCollection.Create(this.State, this, this.ProjectId, this.TypeSymbol); } 106get { return ExternalCodeNamespace.Create(this.State, this.ProjectId, this.TypeSymbol.ContainingNamespace); } 111var currentType = TypeSymbol;
CodeModel\ExternalElements\ExternalCodeClass.cs (2)
64get { return ExternalTypeCollection.Create(this.State, this, this.ProjectId, TypeSymbol.AllInterfaces); } 105=> TypeSymbol is INamedTypeSymbol { IsGenericType: true };
CodeModel\ExternalElements\ExternalCodeStruct.cs (1)
51get { return ExternalTypeCollection.Create(this.State, this, this.ProjectId, TypeSymbol.AllInterfaces); }