| 465 | } |
| 466 | |
| 467 | void DebugCommands::GetAllCommands(Array<StringView>& commands) |
| 468 | { |
| 469 | EnsureInited(); |
| 470 | ScopeLock lock(Locker); |
| 471 | for (const auto& command : Commands) |
| 472 | commands.Add(command.Name); |
| 473 | } |
| 474 | |
| 475 | DebugCommands::CommandFlags DebugCommands::GetCommandFlags(StringView command) |
| 476 | { |
no test coverage detected