Changeset 988
- Timestamp:
- Jul 9, 2003, 7:15:33 PM (18 years ago)
- Location:
- to-imperative/trunk/runtime
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/runtime/Makefile
r913 r988 18 18 rf_word \ 19 19 rf_short_int \ 20 rf_integer \ 20 21 rf_object \ 21 22 rf_object_ref \ -
to-imperative/trunk/runtime/rf_core.cc
r913 r988 96 96 TypeRegister rftype::Char::reg(&Char::funcs, type_char) ; 97 97 TypeRegister rftype::ShortInt::reg(&ShortInt::funcs, type_short_int) ; 98 TypeRegister rftype::Integer::reg(&Integer::funcs, type_integer) ; 98 99 TypeRegister rftype::Word::reg(&Word::funcs, type_word) ; 99 100 -
to-imperative/trunk/runtime/rf_core.hh
r913 r988 34 34 #include "rf_char.ih" 35 35 #include "rf_short_int.ih" 36 #include "rf_integer.ih" 36 37 #include "rf_word.ih" 37 38 #include "rf_box.ih" -
to-imperative/trunk/runtime/rf_types.hh
r835 r988 22 22 type_int, 23 23 type_short_int, 24 type_integer, 24 25 type_user, 25 26 type_object_begin = short_types_count,
Note: See TracChangeset
for help on using the changeset viewer.