| 167 | |
| 168 | |
| 169 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 170 | if (target == fs->pc) |
| 171 | luaK_patchtohere(fs, list); |
| 172 | else { |
| 173 | lua_assert(target < fs->pc); |
| 174 | patchlistaux(fs, list, target, NO_REG, target); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | |
| 179 | void luaK_patchtohere (FuncState *fs, int list) { |
no test coverage detected