aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.icl
diff options
context:
space:
mode:
authorjohnvg2001-09-13 10:32:59 +0000
committerjohnvg2001-09-13 10:32:59 +0000
commit1c48a2b0e1dc9c4ed3ef0c4093d9059f66881e73 (patch)
tree2726a63de3f5cba459a971f86940de810f3b3cc8 /frontend/main.icl
parentadd <|- generator for overloaded lists (diff)
add feo_generics=False
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@775 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/main.icl')
-rw-r--r--frontend/main.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/main.icl b/frontend/main.icl
index d106ef0..c50011a 100644
--- a/frontend/main.icl
+++ b/frontend/main.icl
@@ -168,7 +168,7 @@ compileModule mod_name dcl_cache ms
loadModule :: Ident *DclCache *MainState -> *(!Optional InterMod,!*DclCache,!*MainState);
loadModule mod_ident {dcl_modules,functions_and_macros,predef_symbols,hash_table,heaps} ms=:{ms_files,ms_error,ms_io,ms_out,ms_paths}
# (optional_syntax_tree,cached_functions_and_macros,_,main_dcl_module_n,predef_symbols, hash_table, ms_files, ms_error, ms_io, ms_out,_,heaps)
- = frontEndInterface FrontEndPhaseAll mod_ident {sp_locations = [], sp_paths = ms_paths} dcl_modules functions_and_macros No predef_symbols hash_table ms_files ms_error ms_io ms_out No heaps
+ = frontEndInterface {feo_up_to_phase=FrontEndPhaseAll,feo_generics=False} mod_ident {sp_locations = [], sp_paths = ms_paths} dcl_modules functions_and_macros No predef_symbols hash_table ms_files ms_error ms_io ms_out No heaps
# ms = {ms & ms_files=ms_files, ms_error=ms_error,ms_io=ms_io,ms_out=ms_out}
= case optional_syntax_tree of
Yes {fe_icl={/*icl_functions,*/icl_used_module_numbers}, fe_dcls, fe_dclIclConversions, fe_iclDclConversions}