AjTalk.Language.Interpreter.DoGetConstant C# (CSharp) Method

DoGetConstant() private static method

private static DoGetConstant ( ExecutionContext context ) : void
context ExecutionContext
return void
        private static void DoGetConstant(ExecutionContext context)
        {
            context.InstructionPointer++;
            byte arg = context.Block.ByteCodes[context.InstructionPointer];
            context.Push(context.Block.GetConstant(arg));
        }