aboutsummaryrefslogtreecommitdiff
path: root/frontend/predef.icl
diff options
context:
space:
mode:
authorronny2001-07-25 13:34:00 +0000
committerronny2001-07-25 13:34:00 +0000
commit7a8301859b66a82f980c653c153250fbc7258f7d (patch)
tree537a85f87c2c452a711f5e3b9f28e485f834a92e /frontend/predef.icl
parentrenamed ss_useLayout to ss_scanOptions (diff)
bug fix parse_bug_forbidden_symbols
idents that start with an underscore are only allowed in modules for which the module name starts with an underscore Because of this bug fix StdEnv has to be updated (_createArray in the Array class) git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@570 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/predef.icl')
-rw-r--r--frontend/predef.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/predef.icl b/frontend/predef.icl
index 4667975..02b08f7 100644
--- a/frontend/predef.icl
+++ b/frontend/predef.icl
@@ -179,7 +179,7 @@ where
fill_table_with_hashing tables
# (predefs, hash_table) = tables
- <<- ("StdArray", IC_Module, PD_StdArray) <<- ("StdEnum", IC_Module, PD_StdEnum) <<- ("StdBool", IC_Module, PD_StdBool)
+ <<- ("_SystemArray", IC_Module, PD_StdArray) <<- ("StdEnum", IC_Module, PD_StdEnum) <<- ("StdBool", IC_Module, PD_StdBool)
<<- ("&&", IC_Expression, PD_AndOp) <<- ("||", IC_Expression, PD_OrOp)
<<- ("Array", IC_Class, PD_ArrayClass)
<<- ("createArray", IC_Expression, PD_CreateArrayFun)