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

            arg.Push(new I64ReinterpretF64Node(operand));
            return(null);
        }
Exemple #2
0
 public WasmOpcodeExecutor Visit(I64ReinterpretF64Opcode opcode, WasmFunctionState state) => throw new System.NotImplementedException();