Shovel.Vm.Vm.HandleLget C# (CSharp) 메소드

HandleLget() 정적인 개인적인 메소드

static private HandleLget ( Vm vm ) : void
vm Vm
리턴 void
        static void HandleLget(Vm vm)
        {
            var instruction = vm.CurrentInstruction ();
            var args = (int[])instruction.Arguments;
            vm.stack.Push (FindFrame (vm.currentEnvironment, args [0]).Values [args [1]]);
            vm.IncrementCells (1);
            vm.programCounter++;
        }
Vm