| 5765 | } |
| 5766 | |
| 5767 | void asCContext::CallExceptionCallback() |
| 5768 | { |
| 5769 | if( m_exceptionCallbackFunc.callConv < ICC_THISCALL ) |
| 5770 | m_engine->CallGlobalFunction(this, m_exceptionCallbackObj, &m_exceptionCallbackFunc, 0); |
| 5771 | else |
| 5772 | m_engine->CallObjectMethod(m_exceptionCallbackObj, this, &m_exceptionCallbackFunc, 0); |
| 5773 | } |
| 5774 | |
| 5775 | #ifndef AS_NO_EXCEPTIONS |
| 5776 | // internal |
nothing calls this directly
no test coverage detected