| 507 | |
| 508 | |
| 509 | l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, |
| 510 | int mask, StkId top) { |
| 511 | CallInfo *ci = L->ci = next_ci(L); /* new frame */ |
| 512 | ci->func.p = func; |
| 513 | ci->nresults = nret; |
| 514 | ci->callstatus = mask; |
| 515 | ci->top.p = top; |
| 516 | return ci; |
| 517 | } |
| 518 | |
| 519 | |
| 520 | /* |
no outgoing calls
no test coverage detected