-- stringSlice Value
| 8 | |
| 9 | // -- stringSlice Value |
| 10 | type stringSliceValue struct { |
| 11 | value *[]string |
| 12 | changed bool |
| 13 | } |
| 14 | |
| 15 | func newStringSliceValue(val []string, p *[]string) *stringSliceValue { |
| 16 | ssv := new(stringSliceValue) |
nothing calls this directly
no outgoing calls
no test coverage detected