(val)
| 120 | })(); |
| 121 | |
| 122 | function getDummy(val) { |
| 123 | let builder = new WasmModuleBuilder(); |
| 124 | builder.addFunction('dummy', kSig_i_v) |
| 125 | .addBody([kExprI32Const, val]) |
| 126 | .exportAs('dummy'); |
| 127 | return builder.instantiate().exports.dummy; |
| 128 | } |
| 129 | |
| 130 | (function TestFuncRefTableConstructorWithDefaultValue() { |
| 131 | print(arguments.callee.name); |
no test coverage detected