Files
flatbuffers/tests/non_zero_enum.fbs
Justin Davis 7711e84919 Fix TS object API generation of schema containing array of enumeration having no zero default (#8832)
* set the array constructor to fill with minvalue

* add regression generation test
2025-12-07 07:35:38 -05:00

13 lines
170 B
Plaintext

enum NonZero: ubyte {
VAL = 1,
}
struct NonZeroArrayStruct {
data: [NonZero:4];
}
table NonZeroVectorTable {
values: [NonZero];
value: NonZero = VAL;
}