following is copied from go 1.23.4 flag.go
| 8 | |
| 9 | // following is copied from go 1.23.4 flag.go |
| 10 | type textValue struct{ p encoding.TextUnmarshaler } |
| 11 | |
| 12 | func newTextValue(val encoding.TextMarshaler, p encoding.TextUnmarshaler) textValue { |
| 13 | ptrVal := reflect.ValueOf(p) |
nothing calls this directly
no outgoing calls
no test coverage detected