test/stubgen: add tests for schema transpiling

This commit is contained in:
2026-07-09 15:07:09 +08:00
parent b44b420a88
commit a7c9c635fb
10 changed files with 1137 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
@0xc4b1d8e2f3a7c906;
struct Person {
name @0 :Text;
age @1 :Int32;
email @2 :Text;
}
enum Gender {
male @0;
female @1;
other @2;
}