diff options
author | johnvg | 2013-04-05 14:31:26 +0000 |
---|---|---|
committer | johnvg | 2013-04-05 14:31:26 +0000 |
commit | 06a9755549c194ed39245152f66d81f43e2d9719 (patch) | |
tree | 36833039b00c467487ffbd5da3d00be4fad5dcd9 /frontend/checksupport.icl | |
parent | change type GenericCaseDef, add types GenericCaseFunctions and GCF (diff) |
add derive class for deriving generic functions in class context (from iTask branch)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@2225 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/checksupport.icl')
-rw-r--r-- | frontend/checksupport.icl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/checksupport.icl b/frontend/checksupport.icl index 5ae31d2..6a388f7 100644 --- a/frontend/checksupport.icl +++ b/frontend/checksupport.icl @@ -4,8 +4,6 @@ import StdEnv, compare_constructor import syntax, predef, containers import utilities -//import RWSDebug - cUndef :== -1 instance toInt STE_Kind @@ -21,6 +19,7 @@ where toInt STE_DclFunction = cFunctionDefs toInt (STE_FunctionOrMacro _) = cMacroDefs toInt (STE_DclMacroOrLocalMacroFunction _)= cMacroDefs + toInt STE_GenericDeriveClass = cGenericCaseDefs toInt STE_TypeExtension = cTypeDefs toInt _ = NoIndex |