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

Unified Diff: runtime/observatory/lib/src/elements/script_ref.dart

Issue 979823003: Major rework of vm service events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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/observatory/lib/src/elements/script_ref.dart
diff --git a/runtime/observatory/lib/src/elements/script_ref.dart b/runtime/observatory/lib/src/elements/script_ref.dart
index ab31c8e5b5d7943b8ea5265a7a2789bca8a02c50..cc9b330a7111d63a98f8dee94dd7171788fb45f7 100644
--- a/runtime/observatory/lib/src/elements/script_ref.dart
+++ b/runtime/observatory/lib/src/elements/script_ref.dart
@@ -38,7 +38,7 @@ class ScriptRefElement extends ServiceRefElement {
if (ref.loaded) {
// Script is loaded, get the line number.
Script script = ref;
- return '${super.name}:${script.tokenToLine(pos)}';
+ return '${super.name}:${script.tokenToLine(pos)}:${script.tokenToCol(pos)}';
Cutch 2015/03/05 16:30:57 80 column limit
turnidge 2015/03/05 18:42:24 Done.
} else {
ref.load().then(_updateProperties);
}

Powered by Google App Engine
This is Rietveld 408576698