| 1861 | |
| 1862 | |
| 1863 | Ref<Metadata> DebuggerController::GetAdapterProperty(const std::string& name) |
| 1864 | { |
| 1865 | if (!m_adapter) |
| 1866 | { |
| 1867 | if (!CreateDebugAdapter()) |
| 1868 | return nullptr; |
| 1869 | |
| 1870 | if (!m_adapter) |
| 1871 | return nullptr; |
| 1872 | } |
| 1873 | |
| 1874 | return m_adapter->GetProperty(name); |
| 1875 | } |
| 1876 | |
| 1877 | |
| 1878 | bool DebuggerController::SetAdapterProperty( |
no test coverage detected