14 lines
357 B
C#
14 lines
357 B
C#
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;
|
|
}
|
|
}
|