We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running xmlstruct.WithCompactTypes(true) on <a><b><c></c><c></c></b></a> generates
xmlstruct.WithCompactTypes(true)
<a><b><c></c><c></c></b></a>
type A struct { C struct{} `xml:"b>c"` }
instead of
type A struct { C []struct{} `xml:"b>c"` }
This was missed due to an incorrect test case on line 706 where struct{} should've been []struct{}.
706
struct{}
[]struct{}
go-xmlstruct/generator_test.go
Line 706 in dac321d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running
xmlstruct.WithCompactTypes(true)
on<a><b><c></c><c></c></b></a>
generatesinstead of
This was missed due to an incorrect test case on line
706
wherestruct{}
should've been[]struct{}
.go-xmlstruct/generator_test.go
Line 706 in dac321d
The text was updated successfully, but these errors were encountered: