mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
* Keep include prefix when converting from proto. This change preserves the include prefix when generating flatbuffers from proto (with FBS_GEN_INCLUDES) defined. * Improve handling of imports in proto conversion. Previously, there was no runtime flag to make proto->fbs conversion keep the import structure of a collection of files. This change makes proto conversion respect the --no-gen-includes flag and skip the output of "generated" symbols.
58 lines
959 B
Plaintext
58 lines
959 B
Plaintext
// Generated from test.proto
|
|
|
|
include "imported.fbs";
|
|
|
|
namespace proto.test;
|
|
|
|
/// Enum doc comment.
|
|
enum ProtoEnum : int {
|
|
NUL = 0,
|
|
FOO = 1,
|
|
/// Enum 2nd value doc comment misaligned.
|
|
BAR = 5,
|
|
}
|
|
|
|
/// 2nd table doc comment with
|
|
/// many lines.
|
|
table ProtoMessage {
|
|
c:int = 16;
|
|
d:long;
|
|
p:uint;
|
|
e:ulong;
|
|
/// doc comment for f.
|
|
f:int = -1;
|
|
g:long;
|
|
h:uint;
|
|
q:ulong;
|
|
i:int;
|
|
j:long;
|
|
/// doc comment for k.
|
|
k:bool;
|
|
/// doc comment for l on 2
|
|
/// lines
|
|
l:string (required);
|
|
m:[ubyte];
|
|
n:proto.test.ProtoMessage_.OtherMessage;
|
|
o:[string];
|
|
z:proto.test.ImportedMessage;
|
|
/// doc comment for r.
|
|
r:proto.test.ProtoMessage_.Anonymous0;
|
|
}
|
|
|
|
namespace proto.test.ProtoMessage_;
|
|
|
|
table OtherMessage {
|
|
a:double;
|
|
/// doc comment for b.
|
|
b:float = 3.14149;
|
|
}
|
|
|
|
table Anonymous0 {
|
|
/// doc comment for s.
|
|
s:proto.test.ImportedMessage;
|
|
/// doc comment for t on 2
|
|
/// lines.
|
|
t:proto.test.ProtoMessage_.OtherMessage;
|
|
}
|
|
|