(x, y, width, height)
| 272 | } |
| 273 | |
| 274 | _getContext(x, y, width, height) { |
| 275 | let context = this._contexts[this._contextId(x, y, width, height)]; |
| 276 | return context !== undefined ? context : this._createContext(x, y, width, height); |
| 277 | } |
| 278 | |
| 279 | _resetContext(x, y, width, height) { |
| 280 | delete this._contexts[this._contextId(x, y, width, height)]; |
no test coverage detected