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