* Clear the cache
()
| 435 | * Clear the cache |
| 436 | */ |
| 437 | private _clearCache() { |
| 438 | if (!this._cache) return; |
| 439 | // WeakMap does not have a `clear` method |
| 440 | this._cache = new WeakMap(); |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Invalidate the binding cache so that its value will be reloaded next time. |
no outgoing calls
no test coverage detected