I didn't find about anything to process embedded struct, such as type A struct{ value int } type B struct{ a A } what should I fill in " b := types.NewStruct(/*what to fill here?*/) "
I didn't find about anything to process embedded struct, such as
type A struct{
value int
}
type B struct{
a A
}
what should I fill in " b := types.NewStruct(/what to fill here?/) "