| 95 | } |
| 96 | |
| 97 | bool EditorDebuggerSession::is_breaked() { |
| 98 | ERR_FAIL_NULL_V_MSG(debugger, false, "Plugin is not attached to debugger."); |
| 99 | return debugger->is_breaked(); |
| 100 | } |
| 101 | |
| 102 | bool EditorDebuggerSession::is_debuggable() { |
| 103 | ERR_FAIL_NULL_V_MSG(debugger, false, "Plugin is not attached to debugger."); |
no outgoing calls
no test coverage detected