| 1960 | |
| 1961 | |
| 1962 | static void globalstatfunc (LexState *ls, int line) { |
| 1963 | /* stat -> GLOBAL globalfunc | GLOBAL globalstat */ |
| 1964 | luaX_next(ls); /* skip 'global' */ |
| 1965 | if (testnext(ls, TK_FUNCTION)) |
| 1966 | globalfunc(ls, line); |
| 1967 | else |
| 1968 | globalstat(ls); |
| 1969 | } |
| 1970 | |
| 1971 | |
| 1972 | static int funcname (LexState *ls, expdesc *v) { |
no test coverage detected