aboutsummaryrefslogtreecommitdiff
path: root/frontend/convertcases.icl
diff options
context:
space:
mode:
authorjohnvg2011-11-08 12:59:28 +0000
committerjohnvg2011-11-08 12:59:28 +0000
commite599ee809d75a1b529204475b29657039a44dc8b (patch)
tree59db0d038ff23e55707afdca7238df642b37c72e /frontend/convertcases.icl
parentremove differences in layout between the compiler and the iTask compiler (diff)
remove unnecessary imports of module check,
remove import of StdCompare in checksupport.dcl, changed some other imports git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@2010 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/convertcases.icl')
-rw-r--r--frontend/convertcases.icl4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/convertcases.icl b/frontend/convertcases.icl
index 6a3d56e..c41d511 100644
--- a/frontend/convertcases.icl
+++ b/frontend/convertcases.icl
@@ -3,7 +3,9 @@
*/
implementation module convertcases
-import syntax, transform, StdCompare, check, utilities, trans, general; //, RWSDebug
+import syntax, transform, StdCompare, utilities, typesupport, general
+from partition import ::Component(..),::ComponentMembers(..)
+from trans import convertSymbolType
// exactZip fails when its arguments are of unequal length
exactZip` :: ![.a] ![.b] -> [(.a,.b)]