| 58 | } |
| 59 | |
| 60 | void ScriptDebugger::remove_breakpoint(int p_line, const StringName &p_source) { |
| 61 | if (!breakpoints.has(p_line)) { |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | breakpoints[p_line].erase(p_source); |
| 66 | if (breakpoints[p_line].is_empty()) { |
| 67 | breakpoints.erase(p_line); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | String ScriptDebugger::breakpoint_find_source(const String &p_source) const { |
| 72 | return p_source; |