| 514 | |
| 515 | |
| 516 | int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) { |
| 517 | struct SParser p; |
| 518 | int status; |
| 519 | p.z = z; p.name = name; |
| 520 | luaZ_initbuffer(L, &p.buff); |
| 521 | status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); |
| 522 | luaZ_freebuffer(L, &p.buff); |
| 523 | return status; |
| 524 | } |
| 525 |
no test coverage detected