| 476 | |
| 477 | |
| 478 | HXCPP_EXTERN_CLASS_ATTRIBUTES void NullReference(const char *type, bool allowFixup) |
| 479 | { |
| 480 | #ifdef HXCPP_DEBUGGER |
| 481 | String err(HX_CSTRING("Null ") + String(type) + HX_CSTRING(" Reference")); |
| 482 | if (__hxcpp_dbg_fix_critical_error(err)) |
| 483 | return; |
| 484 | #endif |
| 485 | |
| 486 | __hxcpp_dbg_checkedThrow(HX_CSTRING("Null Object Reference")); |
| 487 | } |
| 488 | |
| 489 | |
| 490 | } // end namspace hx |
no test coverage detected