diff options
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/overloading.icl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/overloading.icl b/frontend/overloading.icl index b27e23a..6fb4c94 100644 --- a/frontend/overloading.icl +++ b/frontend/overloading.icl @@ -1212,6 +1212,11 @@ where = fun_index = NoIndex = NoIndex + get_recursive_fun_index group_index (SK_LocalMacroFunction glob_object) main_dcl_module_n fun_defs + # {fun_info,fun_index} = fun_defs.[glob_object] + | fun_info.fi_group_index == group_index + = fun_index + = NoIndex get_recursive_fun_index group_index _ main_dcl_module_n fun_defs = NoIndex @@ -1600,3 +1605,4 @@ where instance <<< TypeCodeInstance where (<<<) file {tci_index, tci_contexts} = file <<< tci_index <<< ' ' <<< tci_contexts + |