(p *string, s, d, _ string)
| 140 | } |
| 141 | |
| 142 | func (f inlineFlagset) StringVar(p *string, s, d, _ string) { |
| 143 | if t, ok := f.strings[s]; ok { |
| 144 | *p = t |
| 145 | } else { |
| 146 | *p = d |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func (f inlineFlagset) StringList(s, d, _ string) *[]*string { |
| 151 | return &[]*string{} |
nothing calls this directly
no outgoing calls
no test coverage detected