diff options
author | johnvg | 2005-11-21 11:39:54 +0000 |
---|---|---|
committer | johnvg | 2005-11-21 11:39:54 +0000 |
commit | 8f65a6321b8a8bfdb1098c110a4f9b9e3e8f37c1 (patch) | |
tree | 32fb98959e033b6fa4a32c05dc5769f74c0e2056 /main | |
parent | use new apply (diff) |
remove portToNewSyntax
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1566 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main')
-rw-r--r-- | main/compile.icl | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/main/compile.icl b/main/compile.icl index 2957a9b..b515c42 100644 --- a/main/compile.icl +++ b/main/compile.icl @@ -7,7 +7,6 @@ import StdEnv import frontend import backendinterface import filesystem, CoclSystemDependent -import portToNewSyntax import compilerSwitches //import RWSDebug @@ -296,16 +295,6 @@ compileModule options backendArgs cache=:{dcl_modules,functions_and_macros,prede = case optionalSyntaxTree of Yes syntaxTree # functions_and_macros = syntaxTree.fe_icl.icl_functions - # (porting_ok, files) - = switch_port_to_new_syntax (createPortedFiles options.moduleName options.searchPaths files) (False, files) - error = switch_port_to_new_syntax - (case porting_ok of - True - -> error - False - -> error <<< "Error: couldn't write ported versions of module " - <<< options.moduleName <<< '\n') - error # (success, var_heap, attrHeap, error, files) = backEndInterface outputPath (map appendRedirection backendArgs) options.listTypes options.outPath predef_symbols syntaxTree main_dcl_module_n var_heap attrHeap error files -> (success,functions_and_macros,n_functions_and_macros_in_dcl_modules,var_heap,attrHeap, error, files) |