| 3852 | |
| 3853 | |
| 3854 | void luaK_concat (FuncState *fs, int *l1, int l2) { |
| 3855 | if (l2 == NO_JUMP) return; |
| 3856 | else if (*l1 == NO_JUMP) |
| 3857 | *l1 = l2; |
| 3858 | else { |
| 3859 | int list = *l1; |
| 3860 | int next; |
| 3861 | while ((next = getjump(fs, list)) != NO_JUMP) /* find last element */ |
| 3862 | list = next; |
| 3863 | fixjump(fs, list, l2); |
| 3864 | } |
| 3865 | } |
| 3866 | |
| 3867 | |
| 3868 | void luaK_checkstack (FuncState *fs, int n) { |
no test coverage detected