diff options
Diffstat (limited to 'frontend/predef.icl')
-rw-r--r-- | frontend/predef.icl | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/frontend/predef.icl b/frontend/predef.icl index 327e7ba..e33a4c8 100644 --- a/frontend/predef.icl +++ b/frontend/predef.icl @@ -103,20 +103,26 @@ PD_ConsPAIR :== 145 PD_TypeARROW :== 146 PD_ConsARROW :== 147 -PD_isomap_ARROW_ :== 148 -PD_isomap_ID :== 149 +PD_TypeCONSInfo :== 148 +PD_ConsCONSInfo :== 149 +PD_cons_info :== 150 +PD_TypeCONS :== 151 +PD_ConsCONS :== 152 + +PD_isomap_ARROW_ :== 153 +PD_isomap_ID :== 154 /* StdMisc */ -PD_StdMisc :== 150 -PD_abort :== 151 -PD_undef :== 152 +PD_StdMisc :== 155 +PD_abort :== 156 +PD_undef :== 157 -PD_Start :== 153 +PD_Start :== 158 // MW.. -PD_DummyForStrictAliasFun :== 154 +PD_DummyForStrictAliasFun :== 159 -PD_NrOfPredefSymbols :== 155 +PD_NrOfPredefSymbols :== 160 // ..MW @@ -211,6 +217,11 @@ where <<- ("ARROW", IC_Expression, PD_ConsARROW) <<- ("isomap_ARROW_", IC_Expression, PD_isomap_ARROW_) <<- ("isomap_ID", IC_Expression, PD_isomap_ID) + <<- ("CONSInfo", IC_Type, PD_TypeCONSInfo) + <<- ("_CONSInfo", IC_Expression, PD_ConsCONSInfo) + <<- ("CONS", IC_Type, PD_TypeCONS) + <<- ("CONS", IC_Expression, PD_ConsCONS) + <<- ("_cons_info", IC_Expression, PD_cons_info) <<- ("StdMisc", IC_Module, PD_StdMisc) <<- ("abort", IC_Expression, PD_abort) |