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 input_node(me,key)result(node)class(input_t),intent(in)::mecharacter(*),intent(in)::keyclass(type_node),pointer::nodecharacter(:),allocatable::new_keytype(type_dictionary),pointer::dictnew_key=keydict=>select_dict(me%root)call dictionary_traverse(dict,new_key)node=>dict%get(new_key)if(.not.associated(node))error stop'Missing required key "'//new_key//'" in '//dict%pathend function input_node