Exemplo n.º 1
0
        protected override void VisitStoreLocal3Instruction(StoreLocal3Instruction instruction)
        {
            var localType = ControlState.Locals.GetLocalType(null, 3);

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

            ControlState.MoveToNextInstruction();
        }
Exemplo n.º 2
0
 protected abstract void VisitStoreLocal3Instruction(StoreLocal3Instruction instruction);