(kind, start, end)
| 466 | }, |
| 467 | |
| 468 | setExtent2(kind, start, end) { |
| 469 | if (__DEV__) { |
| 470 | assert(!this._frozen); |
| 471 | } |
| 472 | const extentList = this._extents; |
| 473 | if (!extentList[kind]) { |
| 474 | extentList[kind] = extentList[SCALE_EXTENT_KIND_EFFECTIVE].slice(); |
| 475 | } |
| 476 | writeExtent(extentList, kind, start, end); |
| 477 | }, |
| 478 | |
| 479 | freeze() { |
| 480 | if (__DEV__) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…