| 8786 | |
| 8787 | |
| 8788 | static void funcstat (LexState *ls, int line) { |
| 8789 | /* funcstat -> FUNCTION funcname body */ |
| 8790 | int needself; |
| 8791 | expdesc v, b; |
| 8792 | luaX_next(ls); /* skip FUNCTION */ |
| 8793 | needself = funcname(ls, &v); |
| 8794 | body(ls, &b, needself, line); |
| 8795 | luaK_storevar(ls->fs, &v, &b); |
| 8796 | luaK_fixline(ls->fs, line); /* definition `happens' in the first line */ |
| 8797 | } |
| 8798 | |
| 8799 | |
| 8800 | static void exprstat (LexState *ls) { |
no test coverage detected