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

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

            ControlState.MoveToNextInstruction();
        }
 protected abstract void VisitStoreLocal0Instruction(StoreLocal0Instruction instruction);