(kind, depth)
| 114 | }, |
| 115 | |
| 116 | getExtentUnsafe(kind, depth) { |
| 117 | return (depth == null |
| 118 | || depth === SCALE_MAPPER_DEPTH_OUT_OF_BREAK |
| 119 | ) |
| 120 | ? this._outOfBrk.getExtentUnsafe(kind, null) |
| 121 | : this._linear.getExtentUnsafe(kind, null); |
| 122 | }, |
| 123 | |
| 124 | setExtent(start, end) { |
| 125 | this.setExtent2(SCALE_EXTENT_KIND_EFFECTIVE, start, end); |
nothing calls this directly
no test coverage detected