-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
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
Add another case to handle in allOf merging #1636
Conversation
validatedString := astmodel.NewValidatedType( | ||
astmodel.StringType, | ||
astmodel.StringValidations{ | ||
MaxLength: &maxLen, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this require a pointer to maxLen
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it’s optional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one question about how a struct is defined, otherwise looks good.
Codecov Report
@@ Coverage Diff @@
## master #1636 +/- ##
=========================================
Coverage ? 66.92%
=========================================
Files ? 204
Lines ? 14790
Branches ? 0
=========================================
Hits ? 9898
Misses ? 4134
Partials ? 758
Continue to review full report at Codecov.
|
This now occurs due to changes in #1631.
Prerequisites