()
| 250 | } |
| 251 | |
| 252 | get retval_all() { |
| 253 | const retval = this._return_value; |
| 254 | return [new Int(retval[0], retval[1]), new Int(retval[2], retval[3])]; |
| 255 | } |
| 256 | |
| 257 | set retval_all(values) { |
| 258 | const [a, b] = [lohi_from_one(values[0]), lohi_from_one(values[1])]; |
nothing calls this directly
no test coverage detected