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

Unified Diff: pkg/dartino_compiler/lib/cli_debugger.dart

Issue 1987673002: Initial Implementation of the vm-service protocol (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Keep track of terminated state Created 4 years, 6 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
« no previous file with comments | « no previous file | pkg/dartino_compiler/lib/debug_state.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartino_compiler/lib/cli_debugger.dart
diff --git a/pkg/dartino_compiler/lib/cli_debugger.dart b/pkg/dartino_compiler/lib/cli_debugger.dart
index 8f20ae2901e1f66f7e9623dc3980636180125bf2..71fbe4e201f3e5b68bee684b09e8928ac0e95bcd 100644
--- a/pkg/dartino_compiler/lib/cli_debugger.dart
+++ b/pkg/dartino_compiler/lib/cli_debugger.dart
@@ -606,7 +606,7 @@ class CommandLineDebugger {
if (printForTesting) return breakpoint.toString();
int id = breakpoint.id;
String name = breakpoint.methodName;
- String location = breakpoint.location(vmContext.debugState);
+ String location = breakpoint.locationString(vmContext.debugState);
return "$id: $name @ $location";
}
« no previous file with comments | « no previous file | pkg/dartino_compiler/lib/debug_state.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698