Ejemplo n.º 1
0
        private int getjump(int at)
        {
            int offset = Lua.ARGsBx(f.code_Renamed[at]);

            if (offset == NO_JUMP) // point to itself represents end of list
            {
                return(NO_JUMP);   // end of list
            }
            else
            {
                return((at + 1) + offset);  // turn offset into absolute position
            }
        }