mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* adds code generation fuzzer target. * add buffer verification * add table verification in codegen fuzzer --------- Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
8 lines
99 B
Plaintext
8 lines
99 B
Plaintext
enum Color:byte { Red, Green, Blue }
|
|
|
|
table Item {
|
|
name:string;
|
|
color:Color;
|
|
}
|
|
|
|
root_type Item; |