diff options
author | ronny | 2002-07-22 09:47:48 +0000 |
---|---|---|
committer | ronny | 2002-07-22 09:47:48 +0000 |
commit | 3c94b43164af5d4fb096fec3786c4d98cf72844f (patch) | |
tree | a87aedb87bf3c01e3854736cac12d45976d52515 /frontend/frontend.icl | |
parent | add abstract synonym types (diff) |
check kinds in dynamics
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1159 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/frontend.icl')
-rw-r--r-- | frontend/frontend.icl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/frontend.icl b/frontend/frontend.icl index fac6125..e166dee 100644 --- a/frontend/frontend.icl +++ b/frontend/frontend.icl @@ -125,13 +125,13 @@ frontEndInterface options mod_ident search_paths cached_dcl_modules functions_an */ (class_infos, td_infos, th_vars, error_admin) = determineKindsOfClasses icl_used_module_numbers ti_common_defs td_infos th_vars error_admin - # (fun_defs, dcl_mods, td_infos, th_vars, gen_heap, error_admin) + # (fun_defs, dcl_mods, td_infos, th_vars, hp_expression_heap, gen_heap, error_admin) = checkKindsOfCommonDefsAndFunctions n_cached_dcl_modules main_dcl_module_n icl_used_module_numbers icl_global_functions - ti_common_defs fun_defs dcl_mods td_infos class_infos th_vars gen_heap error_admin + ti_common_defs fun_defs dcl_mods td_infos class_infos th_vars heaps.hp_expression_heap heaps.hp_generic_heap error_admin type_heaps = { type_heaps & th_vars = th_vars } - # heaps = { heaps & hp_type_heaps = type_heaps, hp_generic_heap = gen_heap } + # heaps = { heaps & hp_type_heaps = type_heaps, hp_expression_heap = hp_expression_heap, hp_generic_heap = gen_heap } # (saved_main_dcl_common, ti_common_defs) = replace (dcl_common_defs dcl_mods) main_dcl_module_n icl_common with dcl_common_defs :: .{#DclModule} -> .{#CommonDefs} // needed for Clean 2.0 to disambiguate overloading |