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

Unified Diff: runtime/vm/debugger.cc

Issue 192443004: Complete the switch to ServiceObject (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/debugger.cc
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
index 00ea8f8211b62097423e95146c4e531a864dd98a..05ab7e1bc99b33b04baabb80d248f68376da55b6 100644
--- a/runtime/vm/debugger.cc
+++ b/runtime/vm/debugger.cc
@@ -712,7 +712,6 @@ const char* ActivationFrame::ToCString() {
void ActivationFrame::PrintToJSONObject(JSONObject* jsobj) {
intptr_t line = LineNumber();
const Script& script = Script::Handle(SourceScript());
-
jsobj->AddProperty("script", script);
jsobj->AddProperty("line", line);
jsobj->AddProperty("col", ColumnNumber());

Powered by Google App Engine
This is Rietveld 408576698