** Change line information associated with current position, by removing ** previous info and adding it again with new line. */
| 1866 | ** previous info and adding it again with new line. |
| 1867 | */ |
| 1868 | void luaK_fixline (FuncState *fs, int line) { |
| 1869 | removelastlineinfo(fs); |
| 1870 | savelineinfo(fs, fs->f, line); |
| 1871 | } |
| 1872 | |
| 1873 | |
| 1874 | void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) { |
no test coverage detected