** Change line information associated with current position, by removing ** previous info and adding it again with new line. */
| 1742 | ** previous info and adding it again with new line. |
| 1743 | */ |
| 1744 | void luaK_fixline (FuncState *fs, int line) { |
| 1745 | removelastlineinfo(fs); |
| 1746 | savelineinfo(fs, fs->f, line); |
| 1747 | } |
| 1748 | |
| 1749 | |
| 1750 | void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) { |
no test coverage detected