Files

14 lines
357 B
C#
Raw Permalink Normal View History

2026-08-27 10:56:38 -06:00
namespace Microsoft.CodeAnalysis.CSharp.Symbols;
internal static class GeneratedNameKindExtensions
{
internal static bool IsTypeName(this GeneratedNameKind kind)
{
if (kind == GeneratedNameKind.DelegateCacheContainerType || (uint)(kind - 99) <= 1u || kind == GeneratedNameKind.DynamicCallSiteContainerType)
{
return true;
}
return false;
}
}