| 100 | } |
| 101 | |
| 102 | bool EditorDebuggerSession::is_debuggable() { |
| 103 | ERR_FAIL_NULL_V_MSG(debugger, false, "Plugin is not attached to debugger."); |
| 104 | return debugger->is_debuggable(); |
| 105 | } |
| 106 | |
| 107 | bool EditorDebuggerSession::is_active() { |
| 108 | ERR_FAIL_NULL_V_MSG(debugger, false, "Plugin is not attached to debugger."); |
no outgoing calls
no test coverage detected