mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-25 10:48:39 +00:00
[TS] Fix getFullyQualifiedName codegen for typescript (#7730)
#7451 caused getFullyQualifiedName to return a name with underscores, not periods. Because the fully qualified name is a property of FlatBuffers, not the language being codegen'd for, it should use periods. Fixes #7564. Co-authored-by: Derek Bailey <derekbailey@google.com>
This commit is contained in:
@@ -37,7 +37,7 @@ value(optionalEncoding?:any):string|Uint8Array|null {
|
||||
}
|
||||
|
||||
static getFullyQualifiedName():string {
|
||||
return 'reflection_KeyValue';
|
||||
return 'reflection.KeyValue';
|
||||
}
|
||||
|
||||
static startKeyValue(builder:flatbuffers.Builder) {
|
||||
|
||||
Reference in New Issue
Block a user