Files
2026-08-27 10:56:38 -06:00

12 lines
242 B
C#

using System.Collections.Immutable;
using Microsoft.CodeAnalysis.Emit;
namespace Microsoft.Cci;
internal interface IImportScope
{
IImportScope Parent { get; }
ImmutableArray<UsedNamespaceOrType> GetUsedNamespaces(EmitContext context);
}