Images 💾

Last commit ⭐

commit ad59fb7cf0068861072aabadb19749ff785a0d67
Author:     Sam Atkins <atkinssj@serenityos.org>
AuthorDate: Thu Jan 11 14:57:57 2024 +0000
Commit:     Andrew Kaster <akaster@serenityos.org>
CommitDate: Sun Jan 14 18:48:41 2024 -0700

    HackStudio: Make Editor ask Debugger if a breakpoint was added/removed
    
    Rather than adding/removing a breakpoint indicator, and then telling the
    debugger about it and hoping it works, let the debugger tell us if it
    succeeded and then use that to update the indicator.
    
    This prevents the user from adding breakpoints to invalid locations
    while the debugger is running. It also avoids a couple of scary
    VERIFY()s. We still allow creating breakpoints in invalid locations
    while the debugger is *not* running.