/runtime/typeinfo/ti_ireal.d

http://github.com/wilkie/djehuty · D · 17 lines · 7 code · 4 blank · 6 comment · 0 complexity · a6e683b25bf113e5324d3261cee8c2ee MD5 · raw file

  1. /*
  2. * ti_ireal.d
  3. *
  4. * This module implements the TypeInfo for the ireal type.
  5. *
  6. */
  7. module runtime.typeinfo.ti_ireal;
  8. import runtime.typeinfo.ti_real;
  9. class TypeInfo_j : TypeInfo_e {
  10. char[] toString() {
  11. return "ireal";
  12. }
  13. }