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

DoGetConstant() private static méthode

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