| 300 | } |
| 301 | |
| 302 | type readOnlyBoolProperty struct { |
| 303 | get func() bool |
| 304 | changed *Event |
| 305 | } |
| 306 | |
| 307 | func NewReadOnlyBoolProperty(get func() bool, changed *Event) Property { |
| 308 | return &readOnlyBoolProperty{get: get, changed: changed} |
nothing calls this directly
no outgoing calls
no test coverage detected