Shovel.Vm.Vm.HandleCall C# (CSharp) Method

HandleCall() static private method

static private HandleCall ( Vm vm ) : void
vm Vm
return void
        static void HandleCall(Vm vm)
        {
            var instruction = vm.CurrentInstruction ();
            var numArgs = (int)instruction.Arguments;
            Vm.HandleCallImpl (vm, numArgs, true);
        }
Vm