* Processes the provided cache stage. * @param {string=} cacheStage a persistent stage name for caching
(cacheStage)
| 962 | * @param {string=} cacheStage a persistent stage name for caching |
| 963 | */ |
| 964 | freeze(cacheStage) { |
| 965 | this._cache = new WeakTupleMap(); |
| 966 | this._cacheStage = cacheStage; |
| 967 | } |
| 968 | |
| 969 | unfreeze() { |
| 970 | this._cache = undefined; |
no outgoing calls
no test coverage detected