| 96 | } |
| 97 | |
| 98 | IBreakpoint convertToIBreakpoint(Breakpoint &bp) |
| 99 | { |
| 100 | IBreakpoint ibp; |
| 101 | ibp.condition = bp.condition; |
| 102 | ibp.hitCondition = bp.hitCondition; |
| 103 | ibp.logMessage = bp.logMessage; |
| 104 | ibp.verified = bp.verified(); |
| 105 | ibp.support = bp.supported(); |
| 106 | ibp.message = bp.message(); |
| 107 | ibp.sessionsThatVerified = bp.sessionsThatVerified(); |
| 108 | |
| 109 | ibp.uri = bp.uri(); |
| 110 | ibp.lineNumber = bp.lineNumber(); |
| 111 | ibp.endLineNumber = bp.endLineNumber(); |
| 112 | ibp.column = bp.column(); |
| 113 | ibp.endColumn = bp.endColumn(); |
| 114 | ibp.adapterData = bp.adapterData(); |
| 115 | |
| 116 | return ibp; |
| 117 | } |
| 118 | |
| 119 | dap::array<IBreakpoint> DebugModel::getBreakpoints(dap::optional<QUrl> url, dap::optional<int> lineNumber, dap::optional<int> column, dap::optional<bool> enabledOnly) |
| 120 | { |
no test coverage detected