示例#1
0
 /// <summary>
 /// Create a NamespaceExtent that represents a given ModuleSymbol.
 /// </summary>
 internal CommonNamespaceExtent(IModuleSymbol module)
 {
     this.kind = NamespaceExtentKind.Module;
     this.symbolOrCompilation = module;
 }
示例#2
0
 /// <summary>
 /// Create a NamespaceExtent that represents a given AssemblySymbol.
 /// </summary>
 internal CommonNamespaceExtent(IAssemblySymbol assembly)
 {
     this.kind = NamespaceExtentKind.Assembly;
     this.symbolOrCompilation = assembly;
 }
示例#3
0
 /// <summary>
 /// Create a NamespaceExtent that represents a given Compilation.
 /// </summary>
 internal CommonNamespaceExtent(Compilation compilation)
 {
     this.kind = NamespaceExtentKind.Compilation;
     this.symbolOrCompilation = compilation;
 }