(builder, table, type)
| 15 | } |
| 16 | |
| 17 | function exportTable64Setter(builder, table, type) { |
| 18 | const table64_set_sig = makeSig([kWasmI64, type], []); |
| 19 | builder.addFunction('table64_set', table64_set_sig) |
| 20 | .addBody( |
| 21 | [kExprLocalGet, 0, |
| 22 | kExprLocalGet, 1, |
| 23 | kExprTableSet, table.index]) |
| 24 | .exportFunc(); |
| 25 | } |
| 26 | |
| 27 | (function TestTable64SetFuncRef() { |
| 28 | print(arguments.callee.name); |
no test coverage detected