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