mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-05 03:37:29 +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>
20 lines
No EOL
169 B
Text
20 lines
No EOL
169 B
Text
namespace Test;
|
|
|
|
union Shape {
|
|
Circle,
|
|
Square,
|
|
}
|
|
|
|
table Circle {
|
|
radius: float;
|
|
}
|
|
|
|
table Square {
|
|
side: float;
|
|
}
|
|
|
|
table Root {
|
|
shape: Shape;
|
|
}
|
|
|
|
root_type Root; |