| 506 | |
| 507 | |
| 508 | int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) { |
| 509 | struct SParser p; |
| 510 | int status; |
| 511 | p.z = z; p.name = name; |
| 512 | luaZ_initbuffer(L, &p.buff); |
| 513 | status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); |
| 514 | luaZ_freebuffer(L, &p.buff); |
| 515 | return status; |
| 516 | } |
| 517 | |
| 518 |
no test coverage detected