| 425 | } |
| 426 | |
| 427 | void Internal::ThrowIndexOutOfRange(intptr stackOffset) |
| 428 | { |
| 429 | if (gClientPipeErrorFunc != NULL) |
| 430 | gClientPipeErrorFunc("Index out of range", 0); |
| 431 | else if ((stackOffset != -1) && (::IsDebuggerPresent())) |
| 432 | { |
| 433 | SETUP_ERROR("Index out of range", (int)(2 + stackOffset)); |
| 434 | BF_DEBUG_BREAK(); |
| 435 | } |
| 436 | |
| 437 | Internal_FatalError("Index out of range"); |
| 438 | } |
| 439 | |
| 440 | void Internal::ThrowObjectNotInitialized(intptr stackOffset) |
| 441 | { |
nothing calls this directly
no test coverage detected