| 51 | } |
| 52 | |
| 53 | void ScriptDebugger::insert_breakpoint(int p_line, const StringName &p_source) { |
| 54 | if (!breakpoints.has(p_line)) { |
| 55 | breakpoints[p_line] = HashSet<StringName>(); |
| 56 | } |
| 57 | breakpoints[p_line].insert(p_source); |
| 58 | } |
| 59 | |
| 60 | void ScriptDebugger::remove_breakpoint(int p_line, const StringName &p_source) { |
| 61 | if (!breakpoints.has(p_line)) { |
no test coverage detected