(p **bool)
| 98 | } |
| 99 | |
| 100 | func newBoolValue(p **bool) *boolValue { |
| 101 | return &boolValue{p} |
| 102 | } |
| 103 | |
| 104 | func (b *boolValue) Set(value string) error { |
| 105 | v, err := strconv.ParseBool(value) |
no outgoing calls
no test coverage detected
searching dependent graphs…