| 469 | } |
| 470 | |
| 471 | bool ScriptList::IsEnd() |
| 472 | { |
| 473 | if (!this->initialized) { |
| 474 | Debug(script, 0, "IsEnd() is invalid as Begin() is never called"); |
| 475 | return true; |
| 476 | } |
| 477 | return this->sorter->IsEnd(); |
| 478 | } |
| 479 | |
| 480 | SQInteger ScriptList::Count() |
| 481 | { |
no outgoing calls
no test coverage detected