Add `@inline` annotation. Should merge child structs with the outer struct ``` struct my_inner { int inner_id; }; struct my_container { int id; //@inline struct my_inner inner; }; ``` would import/export the following json: ``` { id: 1; inner_id: 2; } ```