コード例 #1
0
        WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(DropOpcode opcode, WasmNodeArg arg)
        {
            var op = arg.Pop();

            arg.Push(new DropNode(op));
            return(null);
        }
コード例 #2
0
 public WasmOpcodeExecutor Visit(DropOpcode opcode, WasmFunctionState state)
 {
     state.PopVoid();
     return(this);
 }
コード例 #3
0
 WasmMSILResult IWasmOpcodeVisitor <WasmMSILArg, WasmMSILResult> .Visit(DropOpcode opcode, WasmMSILArg arg) => throw new NotImplementedException();