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 fluL_loadbuffer(L,buffer,bufName)result(errcode)type(flu_State)::Lcharacter::buffer(:)character(len=*),optional::bufNameinteger::errcodecharacter(len=33)::labelcharacter(len=3)::c_modeinteger(kind=c_int)::c_errcodeinteger(kind=c_size_t)::nCharsif(present(bufName))thenlabel=trim(bufName)//c_null_charelselabel='ScriptBuffer'//c_null_charend ifnChars=int(size(buffer),kind=kind(nChars))c_mode="bt"//c_null_charc_errcode=luaL_loadbufferx(L%state,buffer,nChars,label,c_mode)errcode=c_errcodeend function fluL_loadbuffer