Open
Description
Proto:
enum Option {
/**
* This is the default option. Its documentation should wrap not at
* the "\n" symbol but at the right place according to the line limit.
*/
DEFAULT = 1;
}
generates:
enum class Option(
override val value: Int
) : WireEnum {
/**
* This is the default option. Its documentation should wrap not at
* the "\n" symbol but at the right place according to the line limit.
*/
DEFAULT(1);
...
should be:
enum class Option(
override val value: Int
) : WireEnum {
/**
* This is the default option. Its documentation should wrap not at the "\n" symbol but at the
* right place according to the line limit.
*/
DEFAULT(1);
...