mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
* Wrap types in namespace for --ts-flat-files and --gen-all * Fixes for escaping object types * Added to generate_code
9 lines
111 B
Plaintext
9 lines
111 B
Plaintext
include "bar/bar.fbs";
|
|
include "bar/bar_with_ns.fbs";
|
|
|
|
table Foo {
|
|
bar:Bar;
|
|
bar2:bar.Bar;
|
|
}
|
|
|
|
root_type Foo; |