AjTalk.Language.Interpreter.DoGetBlock C# (CSharp) Méthode

DoGetBlock() private static méthode

private static DoGetBlock ( ExecutionContext context ) : void
context ExecutionContext
Résultat void
        private static void DoGetBlock(ExecutionContext context)
        {
            context.InstructionPointer++;
            byte arg = context.Block.ByteCodes[context.InstructionPointer];

            Block newblock = (Block)context.Block.GetConstant(arg);

            newblock = newblock.Clone(context);

            context.Push(newblock);
        }