10 lines
113 B
C#
10 lines
113 B
C#
namespace Microsoft.CodeAnalysis.CSharp;
|
|
|
|
internal enum ClosureKind
|
|
{
|
|
Static,
|
|
Singleton,
|
|
ThisOnly,
|
|
General
|
|
}
|