(field: string, targets: IMulTargets,
options: IMulOptions = { base: 10, signed: false })
| 1263 | } |
| 1264 | |
| 1265 | private mulAdd(field: string, targets: IMulTargets, |
| 1266 | options: IMulOptions = { base: 10, signed: false }): Node { |
| 1267 | const p = this.llparse; |
| 1268 | |
| 1269 | return p.invoke(p.code.mulAdd(field, options), { |
| 1270 | 1: this.node(targets.overflow), |
| 1271 | }, this.node(targets.success)); |
| 1272 | } |
| 1273 | |
| 1274 | private isEqual(field: string, value: number, map: IIsEqualTargets) { |
| 1275 | const p = this.llparse; |
no test coverage detected