| 23 | var allCmdLineArgs []cmdLineArg |
| 24 | |
| 25 | type cmdLineArgString struct { |
| 26 | cmdName string |
| 27 | envName string |
| 28 | usage string |
| 29 | |
| 30 | isSet bool |
| 31 | def string |
| 32 | value string |
| 33 | } |
| 34 | |
| 35 | func (s *cmdLineArgString) String() string { |
| 36 | return s.value |
nothing calls this directly
no outgoing calls
no test coverage detected