mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-06 13:37:25 +00:00
* Correctly parse lists of enums in Dart generated code * Add a test for #6869 * Commit generated code * Fixed missing newline-at-eof
11 lines
110 B
Plaintext
11 lines
110 B
Plaintext
enum OptionsEnum : uint32
|
|
{
|
|
A = 1,
|
|
B = 2,
|
|
C = 3
|
|
}
|
|
|
|
table MyTable {
|
|
options : [OptionsEnum];
|
|
}
|