10 references to GetPublicSymbol
Microsoft.CodeAnalysis.CSharp (10)
Compilation\CSharpCompilation.cs (3)
341name).GetPublicSymbol(); 3916get { return this.GlobalNamespace.GetPublicSymbol(); } 3995return this.GetCompilationNamespace(namespaceSymbol).GetPublicSymbol();
Compilation\SyntaxTreeSemanticModel.cs (2)
1310return GetDeclaredNamespace(declarationSyntax).GetPublicSymbol(); 1318return GetDeclaredNamespace(declarationSyntax).GetPublicSymbol();
Symbols\PublicModel\AssemblySymbol.cs (1)
25return UnderlyingAssemblySymbol.GlobalNamespace.GetPublicSymbol();
Symbols\PublicModel\ModuleSymbol.cs (2)
28return _underlying.GlobalNamespace.GetPublicSymbol(); 34return _underlying.GetModuleNamespace(namespaceSymbol).GetPublicSymbol();
Symbols\PublicModel\NamespaceSymbol.cs (1)
61yield return n.GetPublicSymbol();
Symbols\PublicModel\Symbol.cs (1)
209INamespaceSymbol ISymbol.ContainingNamespace => UnderlyingSymbol.ContainingNamespace.GetPublicSymbol();