11 lines
116 B
C#
11 lines
116 B
C#
namespace Microsoft.CodeAnalysis.Emit;
|
|
|
|
public enum SemanticEditKind
|
|
{
|
|
None,
|
|
Update,
|
|
Insert,
|
|
Delete,
|
|
Replace
|
|
}
|