AjTalk.Language.Interpreter.DoBasicSize C# (CSharp) 메소드

DoBasicSize() 개인적인 정적인 메소드

private static DoBasicSize ( ExecutionContext context ) : void
context ExecutionContext
리턴 void
        private static void DoBasicSize(ExecutionContext context)
        {
            IIndexedObject indexedObj = (IIndexedObject)context.Pop();
            context.LastReceiver = indexedObj;
            context.Push(indexedObj.BasicSize);
        }