* Set the `_getValue` function * @param getValue - getValue function
(getValue: ValueFactory<T>)
| 717 | * @param getValue - getValue function |
| 718 | */ |
| 719 | private _setValueGetter(getValue: ValueFactory<T>) { |
| 720 | // Clear the cache |
| 721 | this._clearCache(); |
| 722 | this._getValue = resolutionCtx => { |
| 723 | return getValue(resolutionCtx); |
| 724 | }; |
| 725 | this.emitChangedEvent('value'); |
| 726 | } |
| 727 | |
| 728 | /** |
| 729 | * Bind the key to a constant value. The value must be already available |
no test coverage detected