[svn r57] Added most basic TypeInfo (rebuild lphobos).

Fixed some SymOffExp bugs.
Added another typeinfo test case.
This commit is contained in:
Tomas Lindquist Olsen
2007-10-23 07:16:02 +02:00
parent 5fee3fc8b7
commit b72a4fa645
14 changed files with 533 additions and 4 deletions

20
lphobos/typeinfos.d Normal file
View File

@@ -0,0 +1,20 @@
module typeinfos;
import
typeinfo.ti_byte,
typeinfo.ti_char,
typeinfo.ti_delegate,
typeinfo.ti_dchar,
typeinfo.ti_double,
typeinfo.ti_float,
typeinfo.ti_int,
typeinfo.ti_long,
typeinfo.ti_ptr,
typeinfo.ti_real,
typeinfo.ti_short,
typeinfo.ti_ubyte,
typeinfo.ti_uint,
typeinfo.ti_ulong,
typeinfo.ti_ushort,
typeinfo.ti_void,
typeinfo.ti_wchar;