AjTalk.Language.Interpreter.DoGetConstant C# (CSharp) Метод

DoGetConstant() приватный статический Метод

private static DoGetConstant ( ExecutionContext context ) : void
context ExecutionContext
Результат void
        private static void DoGetConstant(ExecutionContext context)
        {
            context.InstructionPointer++;
            byte arg = context.Block.ByteCodes[context.InstructionPointer];
            context.Push(context.Block.GetConstant(arg));
        }