When a breakpoint is set, we call .toDap() on an unverified BP
In the meantime, the debugger resolves the breakpoint
toDap() resolves and then we .markSetCompleted()
But we never notify the UI because we assume it was captured in toDap().
Instead of omitting the resolve during set, just wait in notifyResolved.
This could lead to some duplicate updates in the UI, but there should be
no ill effects from them.
.toDap()
on an unverified BPtoDap()
resolves and then we.markSetCompleted()
toDap()
.Instead of omitting the resolve during set, just wait in
notifyResolved
. This could lead to some duplicate updates in the UI, but there should be no ill effects from them.