| 184 | |
| 185 | |
| 186 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 187 | if (target == fs->pc) |
| 188 | luaK_patchtohere(fs, list); |
| 189 | else { |
| 190 | lua_assert(target < fs->pc); |
| 191 | patchlistaux(fs, list, target, NO_REG, target); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | |
| 196 | void luaK_patchclose (FuncState *fs, int list, int level) { |
no test coverage detected