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

HandleCallj() static private method

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