Mercury enums are not generated corect

Input C# code:

namespace SampleApp.UITests
{
    public enum Gender
    {
        Male,
        Female
    }
}

Output Mercury code:

Namespace SampleApp.UITests

Public Enum GenderMale, FemaleEnd Enum 


End Namespace

Should have been:

Namespace SampleApp.UITests

Public Enum Gender
    Male
    Female
End Enum 

End Namespace

linebreaks are missing and the comma shouldn’t be there.

CG4 bug. fixed.