Changeset 1066
- Timestamp:
- Jul 30, 2003, 12:29:01 PM (17 years ago)
- Location:
- to-imperative/trunk
- Files:
-
- 11 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/library/Makefile
r1040 r1066 1 1 SUBDIRS = \ 2 Access Arithm Box Class Convert StdIO String Table Compare Dos Vector 2 Access \ 3 Apply \ 4 Arithm \ 5 Box \ 6 Class \ 7 Convert \ 8 StdIO \ 9 String \ 10 Table \ 11 Compare \ 12 Dos \ 13 Vector 3 14 4 15 TOPDIR = .. -
to-imperative/trunk/runtime/Makefile
r988 r1066 19 19 rf_short_int \ 20 20 rf_integer \ 21 rf_func \ 21 22 rf_object \ 22 23 rf_object_ref \ -
to-imperative/trunk/runtime/rf_core.cc
r1010 r1066 102 102 TypeRegister rftype::Integer::reg(&Integer::funcs, type_int) ; 103 103 TypeRegister rftype::Word::reg(&Word::funcs, type_word) ; 104 TypeRegister rftype::Func::reg(&Func::funcs, type_func) ; 104 105 105 106 ObjectRegister rftype::Box::reg(type_box) ; -
to-imperative/trunk/runtime/rf_core.hh
r988 r1066 39 39 #include "rf_vector.ih" 40 40 #include "rf_channel.ih" 41 #include "rf_func.ih" 41 42 #include "rf_table.ih" 42 43 #include "rf_string.ih" -
to-imperative/trunk/runtime/rf_term.hh
r879 r1066 104 104 intptr_t int_data2 ; 105 105 void* ptr_data2 ; 106 void (*fptr_data2) () ; 106 107 }; 107 108 -
to-imperative/trunk/runtime/rf_types.hh
r1010 r1066 29 29 type_table, 30 30 type_channel, 31 type_func, 31 32 type_user_object, 32 33 type_expr = max_type
Note: See TracChangeset
for help on using the changeset viewer.