AjTalk.Language.ExecutionContext.GetLocal C# (CSharp) Method

GetLocal() private method

private GetLocal ( int nlocal ) : object
nlocal int
return object
        internal object GetLocal(int nlocal)
        {
            if (nlocal < this.NoParentLocals)
                return this.GetParentLocal(nlocal);
            return this.locals[nlocal - this.NoParentLocals];
        }