Debugger: Poll frequently after stepping.

This will make us listen for events slightly less often, so we don't want
to sustain it.
This commit is contained in:
Unknown W. Brackets
2018-06-08 06:59:17 -07:00
parent fc8ad3b47b
commit 2f3b6c19d0
3 changed files with 14 additions and 4 deletions
+3 -1
View File
@@ -29,7 +29,7 @@ JsonWriter &DebuggerRequest::Respond() {
return writer_;
}
void DebuggerRequest::Finish() {
bool DebuggerRequest::Finish() {
if (responseBegun_ && !responseSent_) {
writer_.end();
if (responsePartial_)
@@ -40,6 +40,8 @@ void DebuggerRequest::Finish() {
responseSent_ = true;
responsePartial_ = false;
}
return responseSent_;
}
void DebuggerRequest::Flush() {