| 136 | } |
| 137 | |
| 138 | type readOnlyProperty struct { |
| 139 | get func() interface{} |
| 140 | changed *Event |
| 141 | } |
| 142 | |
| 143 | func NewReadOnlyProperty(get func() interface{}, changed *Event) Property { |
| 144 | return &readOnlyProperty{get: get, changed: changed} |
nothing calls this directly
no outgoing calls
no test coverage detected