()
| 58 | } |
| 59 | |
| 60 | func (s *stringSliceValue) String() string { |
| 61 | str, _ := writeAsCSV(*s.value) |
| 62 | return "[" + str + "]" |
| 63 | } |
| 64 | |
| 65 | func (s *stringSliceValue) Append(val string) error { |
| 66 | *s.value = append(*s.value, val) |
nothing calls this directly
no test coverage detected