예제 #1
0
        WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(I32ReinterpretF32Opcode opcode, WasmNodeArg arg)
        {
            var operand = arg.Pop();

            arg.Push(new I32ReinterpretF32Node(operand));
            return(null);
        }
예제 #2
0
 public WasmOpcodeExecutor Visit(I32ReinterpretF32Opcode opcode, WasmFunctionState state) => throw new System.NotImplementedException();