/runtime/unwind.d

http://github.com/wilkie/djehuty · D · 17 lines · 5 code · 5 blank · 7 comment · 0 complexity · 271d6cb7e8425504a16b5d7c8fd6606c MD5 · raw file

  1. /*
  2. * unwind.d
  3. *
  4. * This module implements the D runtime unwind functions which serve to
  5. * process exceptions and backtraces.
  6. *
  7. */
  8. module runtime.unwind;
  9. import runtime.common;
  10. extern(C):
  11. void _d_throw(Object obj) {
  12. }