()
| 192 | } |
| 193 | |
| 194 | func (v *commandLineFlagValue) String() string { |
| 195 | if v == nil || v.host == nil { |
| 196 | return "" |
| 197 | } |
| 198 | v.host.mu.Lock() |
| 199 | defer v.host.mu.Unlock() |
| 200 | return v.host.commandLineFlags[v.name].value |
| 201 | } |
| 202 | |
| 203 | func (v *commandLineFlagValue) Set(raw string) error { |
| 204 | if v == nil || v.host == nil { |
no outgoing calls