** 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.) */
| 305 | ** because we only know addresses once code is generated.) |
| 306 | */ |
| 307 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 308 | lua_assert(target <= fs->pc); |
| 309 | patchlistaux(fs, list, target, NO_REG, target); |
| 310 | } |
| 311 | |
| 312 | |
| 313 | void luaK_patchtohere (FuncState *fs, int list) { |
no test coverage detected