Пример #1
0
        WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(I64ClzOpcode opcode, WasmNodeArg arg)
        {
            var expr = arg.Pop();

            arg.Push(new I64ClzNode(expr));
            return(null);
        }
 public WasmOpcodeExecutor Visit(I64ClzOpcode opcode, WasmFunctionState state) => throw new System.NotImplementedException();