()
| 127 | } |
| 128 | |
| 129 | get value() { |
| 130 | if (__DEV__) { |
| 131 | this.dep.track({ |
| 132 | target: this, |
| 133 | type: TrackOpTypes.GET, |
| 134 | key: 'value', |
| 135 | }) |
| 136 | } else { |
| 137 | this.dep.track() |
| 138 | } |
| 139 | return this._value |
| 140 | } |
| 141 | |
| 142 | set value(newValue) { |
| 143 | const oldValue = this._rawValue |
nothing calls this directly
no test coverage detected