** Change line information associated with current position, by removing ** previous info and adding it again with new line. */
| 1785 | ** previous info and adding it again with new line. |
| 1786 | */ |
| 1787 | void luaK_fixline (FuncState *fs, int line) { |
| 1788 | removelastlineinfo(fs); |
| 1789 | savelineinfo(fs, fs->f, line); |
| 1790 | } |
| 1791 | |
| 1792 | |
| 1793 | void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) { |
no test coverage detected