aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorsjakie1999-11-15 16:33:30 +0000
committersjakie1999-11-15 16:33:30 +0000
commitce7d1fe443bf287aec1a1d91a3d33e98e594ddc5 (patch)
tree120ef72991e675418d339fd07874150338f3b02f /frontend
parentnothing serious (diff)
removed debugging output
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@51 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend')
-rw-r--r--frontend/checksupport.icl6
1 files changed, 2 insertions, 4 deletions
diff --git a/frontend/checksupport.icl b/frontend/checksupport.icl
index 8a34fb8..d742474 100644
--- a/frontend/checksupport.icl
+++ b/frontend/checksupport.icl
@@ -305,8 +305,7 @@ where
# cs = { cs & cs_symbol_table = NewEntry cs_symbol_table id_info dcl_kind dcl_index cGlobalScope entry }
= case dcl_kind of
STE_Field selector_id
- -> addFieldToSelectorDefinition selector_id { glob_module = NoIndex, glob_object = dcl_index } (cs
- ---> ("add_global_definition", ident, selector_id, (ptrToInt id_info, ptrToInt selector_id.id_info)))
+ -> addFieldToSelectorDefinition selector_id { glob_module = NoIndex, glob_object = dcl_index } cs
_
-> cs
= { cs & cs_error = checkError ident "(global definition) already defined" cs.cs_error}
@@ -346,8 +345,7 @@ where
# {ste_kind,ste_previous} = entry
= case ste_kind of
STE_Field field_id
- # symbol_table = removeFieldFromSelectorDefinition field_id NoIndex dcl_index (symbol_table
- ---> ("removeDeclarationsFromSymbolTable", id_name, field_id, (ptrToInt id_info, ptrToInt field_id.id_info)))
+ # symbol_table = removeFieldFromSelectorDefinition field_id NoIndex dcl_index symbol_table
| ste_previous.ste_def_level == scope
-> symbol_table <:= (id_info, ste_previous.ste_previous)
-> symbol_table <:= (id_info, ste_previous)