Exemple #1
0
        protected override void VisitStoreLocal1Instruction(StoreLocal1Instruction instruction)
        {
            var localType = ControlState.Locals.GetLocalType(null, 1);

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

            ControlState.MoveToNextInstruction();
        }
 protected abstract void VisitStoreLocal1Instruction(StoreLocal1Instruction instruction);