...

Text file src/github.com/google/flatbuffers/tests/private_annotation_test.fbs

Documentation: github.com/google/flatbuffers/tests

     1enum AB:byte (private) {
     2  A,
     3  B,
     4}
     5
     6struct Object (private) {
     7    value: int;
     8}
     9
    10union Any (private) { Game, Annotations }
    11
    12table Game (private) {
    13    value: int;
    14}
    15
    16table Annotations (private) {
    17    value: int;
    18}

View as plain text