** Path all jumps in 'list' to jump to 'target'. ** (The assert means that we cannot fix a jump to a forward address ** because we only know addresses once code is generated.) */
| 304 | ** because we only know addresses once code is generated.) |
| 305 | */ |
| 306 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 307 | lua_assert(target <= fs->pc); |
| 308 | patchlistaux(fs, list, target, NO_REG, target); |
| 309 | } |
| 310 | |
| 311 | |
| 312 | void luaK_patchtohere (FuncState *fs, int list) { |
no test coverage detected