コード例 #1
0
        WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(BrIfOpcode opcode, WasmNodeArg arg)
        {
            var label     = arg.ResolveLabel(opcode.RelativeDepth);
            var condition = arg.Pop();
            var node      = new BrIfNode(condition, label);

            arg.Push(node);
            return(null);
        }
コード例 #2
0
 WasmMSILResult IWasmOpcodeVisitor <WasmMSILArg, WasmMSILResult> .Visit(BrIfOpcode opcode, WasmMSILArg arg) => throw new NotImplementedException();
コード例 #3
0
 public WasmOpcodeExecutor Visit(BrIfOpcode opcode, WasmFunctionState state) => throw new System.NotImplementedException();