fix required struct tag when anonymous nested struct

This commit is contained in:
zhangqz 2021-04-30 14:14:47 +08:00 committed by Deng Ming
parent d04f11c57a
commit 97df75a28c
1 changed files with 1 additions and 0 deletions

View File

@ -1252,6 +1252,7 @@ func parseStruct(imports []*ast.ImportSpec, st *ast.StructType, k string, m *swa
for name, p := range nm.Properties {
m.Properties[name] = p
}
m.Required = append(m.Required, nm.Required...)
continue
}
}