* NOTICE: The caller should ensure `start` and `end` are both non-negative.
(start, end)
| 204 | * NOTICE: The caller should ensure `start` and `end` are both non-negative. |
| 205 | */ |
| 206 | setExtent(start, end) { |
| 207 | this.setExtent2(SCALE_EXTENT_KIND_EFFECTIVE, start, end); |
| 208 | }, |
| 209 | |
| 210 | setExtent2(kind, start, end) { |
| 211 | if (!isValidBoundsForExtent(start, end) |
nothing calls this directly
no test coverage detected