diff options
Diffstat (limited to 'frontend/syntax.icl')
-rw-r--r-- | frontend/syntax.icl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index a05ef5e..b670b7e 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -1,8 +1,7 @@ implementation module syntax -import StdEnv, compare_constructor // ,RWSDebug - -import scanner, general, Heap, typeproperties, utilities, compilerSwitches +import StdEnv, compare_constructor +import scanner, general, Heap, typeproperties, utilities import syntax instance toString Ident @@ -722,7 +721,7 @@ where instance <<< ClassInstance where - (<<<) file {ins_class,ins_type} = file <<< ins_class <<< " :: " <<< ins_type + (<<<) file {ins_class_ident,ins_type} = file <<< ins_class_ident.ci_ident <<< " :: " <<< ins_type instance <<< (Optional a) | <<< a where |