mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* Fix C/C++ Create<Type>Direct with sorted vectors If a struct has a key the vector has to be sorted. To sort the vector you can't use "const". * Changes due to code review * Improve code readability * Add generate of JSON schema to string to lib * option indent_step is supported * Remove unused variables * Fix break in test * Fix style to be consistent with rest of the code * [TS] Fix reserved words as arguments (#6955) * [TS] Fix generation of reserved words in object api (#7106) * [TS] Fix generation of object api * [TS] Fix MakeCamel -> ConvertCase * [C#] Fix collision of field name and type name * [TS] Add test for struct of struct of struct * Update generated files * Add missing files * [TS] Fix query of null/undefined fields in object api * Fix collision if field name is equal to table name and used as key in an array --------- Co-authored-by: Derek Bailey <derekbailey@google.com>
22 lines
344 B
Plaintext
22 lines
344 B
Plaintext
namespace union_value_collsion;
|
|
|
|
table IntValue {
|
|
value:int;
|
|
}
|
|
table Collide {
|
|
collide: string (key);
|
|
value: string;
|
|
}
|
|
|
|
union Value { IntValue }
|
|
|
|
union Other { IntValue }
|
|
|
|
// This table tests collsions of Unions and fields named value.
|
|
table Collision {
|
|
some_value : Value;
|
|
value : Other;
|
|
collide : [Collision];
|
|
}
|
|
|
|
root_type Collision; |