Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Unified Diff: runtime/vm/service.cc

Issue 2636443004: Make rewind work on DBC (Closed)
Patch Set: Tweaks Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/service.cc
diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
index 6b8afb7ad8937da7fe435ff75251279431c325bf..523c40a7982a47b690414b80abc466ccb2fb92e4 100644
--- a/runtime/vm/service.cc
+++ b/runtime/vm/service.cc
@@ -3041,13 +3041,6 @@ static bool Resume(Thread* thread, JSONStream* js) {
if (step_param != NULL) {
step = EnumMapper(step_param, step_enum_names, step_enum_values);
}
-#if defined(TARGET_ARCH_DBC)
- if (step == Debugger::kStepRewind) {
- js->PrintError(kCannotResume,
- "Rewind not yet implemented on this architecture");
- return true;
- }
-#endif
intptr_t frame_index = 1;
const char* frame_index_param = js->LookupParam("frameIndex");
if (frame_index_param != NULL) {

Powered by Google App Engine
This is Rietveld 408576698