Files
flatbuffers-bigfoot/tests/longer_namespace.fbs
Truman Mulholland 00eec2445b [TS] Fix relative paths for exports (#8517)
Fixes an issue where exports were using incorrect relative paths for
>=3 namespace levels. This is fixed by making the starting range of the
namespace components relative to the amount of components.

Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
2025-07-01 08:38:02 -07:00

7 lines
97 B
Plaintext

namespace longer_namespace.a.b.c;
table Person {
name:string;
age:short;
}
root_type Person;