(val, opt)
| 184 | }, |
| 185 | |
| 186 | transformOut(val, opt) { |
| 187 | const depth = opt ? opt.depth : null; |
| 188 | tmpTransformOutOpt1.depth = depth; |
| 189 | tmpTransformOutOpt2.lookup = this._lookup; |
| 190 | return logScalePowTick( |
| 191 | (depth === SCALE_MAPPER_DEPTH_OUT_OF_BREAK) |
| 192 | ? val |
| 193 | : this.intervalStub.transformOut(val, tmpTransformOutOpt1), |
| 194 | this.base, |
| 195 | tmpTransformOutOpt2 |
| 196 | ); |
| 197 | }, |
| 198 | |
| 199 | contain(val) { |
| 200 | return this.powStub.contain(val); |
no test coverage detected