| 500 | |
| 501 | |
| 502 | l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, |
| 503 | int mask, StkId top) { |
| 504 | CallInfo *ci = L->ci = next_ci(L); /* new frame */ |
| 505 | ci->func.p = func; |
| 506 | ci->nresults = nret; |
| 507 | ci->callstatus = mask; |
| 508 | ci->top.p = top; |
| 509 | return ci; |
| 510 | } |
| 511 | |
| 512 | |
| 513 | /* |
no outgoing calls
no test coverage detected