** Change line information associated with current position, by removing ** previous info and adding it again with new line. */
| 1724 | ** previous info and adding it again with new line. |
| 1725 | */ |
| 1726 | void luaK_fixline (FuncState *fs, int line) { |
| 1727 | removelastlineinfo(fs); |
| 1728 | savelineinfo(fs, fs->f, line); |
| 1729 | } |
| 1730 | |
| 1731 | |
| 1732 | void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) { |
no test coverage detected