示例#1
0
        protected override void VisitStoreLocal2Instruction(StoreLocal2Instruction instruction)
        {
            var localType = ControlState.Locals.GetLocalType(null, 2);

            ControlState.EvaluationStack.PopValue(_program, localType, out var value);
            ControlState.Locals.Store(null, 2, value);

            ControlState.MoveToNextInstruction();
        }
 protected abstract void VisitStoreLocal2Instruction(StoreLocal2Instruction instruction);