WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(DropOpcode opcode, WasmNodeArg arg)
        {
            var op = arg.Pop();

            arg.Push(new DropNode(op));
            return(null);
        }
 public WasmOpcodeExecutor Visit(DropOpcode opcode, WasmFunctionState state)
 {
     state.PopVoid();
     return(this);
 }
 WasmMSILResult IWasmOpcodeVisitor <WasmMSILArg, WasmMSILResult> .Visit(DropOpcode opcode, WasmMSILArg arg) => throw new NotImplementedException();