-
Notifications
You must be signed in to change notification settings - Fork 73
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
Get more type information from runtime parser #249
base: main
Are you sure you want to change the base?
Conversation
parse/base.go
Outdated
@@ -16,6 +16,27 @@ type FieldInfo struct { | |||
Name string // field name as defined in source file, e.g. Name | |||
Type string // field type as defined in source file, e.g. string; always present for primary key, may be absent otherwise | |||
Column string // SQL database column name from "reform:" struct field tag, e.g. name | |||
|
|||
// TODO Kind reflect.Kind // underlying type; set only by runtime parser |
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.
[Optional linters] reported by reviewdog 🐶
parse/base.go:20: Line contains TODO/BUG/FIXME: "TODO Kind reflect.Kind // underlying typ..." (godox)
cb45cad
to
aa23a08
Compare
Codecov Report
@@ Coverage Diff @@
## main #249 +/- ##
==========================================
+ Coverage 68.08% 69.61% +1.53%
==========================================
Files 19 20 +1
Lines 1720 1787 +67
==========================================
+ Hits 1171 1244 +73
+ Misses 491 474 -17
- Partials 58 69 +11
Continue to review full report at Codecov.
|
f73da84
to
d057d43
Compare
d057d43
to
26cbc0c
Compare
No description provided.