Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Source Code
function flu_pcall(L,nargs,nresults,errfunc)result(errcode)type(flu_State)::Linteger::nargsinteger::nresultsinteger::errfuncinteger::errcodeinteger(kind=c_int)::c_nargsinteger(kind=c_int)::c_nresultsinteger(kind=c_int)::c_errfuncinteger(kind=c_int)::c_errcodec_nargs=nargsc_nresults=nresultsc_errfunc=errfuncc_errcode=lua_pcallk(L%state,c_nargs,c_nresults,c_errfunc,&&0_c_int,C_NULL_PTR)errcode=c_errcodeend function flu_pcall