* Get cache description. Used for system messages and errors. * @return {string}
()
| 474 | * @return {string} |
| 475 | */ |
| 476 | toString() { |
| 477 | const tile = this._tRef || (this._tiles.length && this._tiles[0]); |
| 478 | return tile ? `Cache ${this.type} [used e.g. by ${tile.toString()}]` : `Orphan cache!`; |
| 479 | } |
| 480 | |
| 481 | /** |
| 482 | * Set initial state, prepare for usage. |
no outgoing calls
no test coverage detected