• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1include "fcp/tracing/tracing_schema_common.fbs";
2namespace foo.bar;
3
4enum Color : int { Red = 0, Green = 1, Blue = 2 }
5
6table TestTable (tag: "TETB", span) {
7  id: int;
8  color: Color;
9}
10