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

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: cleanup 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
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 af24d4e6c2da99713450545bb9d82c78cab86089..ceea0f18ff99688f90c81f5f918a417a1d337cd3 100644
--- a/pkg/dartino_compiler/lib/cli_debugger.dart
+++ b/pkg/dartino_compiler/lib/cli_debugger.dart
@@ -599,7 +599,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') | pkg/dartino_compiler/lib/src/debug_service_protocol.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698