| 506 | } |
| 507 | |
| 508 | type stringValue struct { |
| 509 | hidden bool |
| 510 | target *string |
| 511 | normalizers []func(string) string |
| 512 | } |
| 513 | |
| 514 | func newStringValue(val string, target *string, hidden bool, normalizers []func(string) string) *stringValue { |
| 515 | sv := &stringValue{ |
nothing calls this directly
no outgoing calls
no test coverage detected