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

Side by Side Diff: runtime/observatory/lib/src/elements/debugger.dart

Issue 1132153002: Add Debugger.inspect. 1976 here we come! (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library debugger_page_element; 5 library debugger_page_element;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'observatory_element.dart'; 9 import 'observatory_element.dart';
10 import 'package:observatory/app.dart'; 10 import 'package:observatory/app.dart';
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 case ServiceEvent.kBreakpointResolved: 1079 case ServiceEvent.kBreakpointResolved:
1080 case ServiceEvent.kBreakpointRemoved: 1080 case ServiceEvent.kBreakpointRemoved:
1081 if (event.owner == isolate) { 1081 if (event.owner == isolate) {
1082 _reportBreakpointEvent(event); 1082 _reportBreakpointEvent(event);
1083 } 1083 }
1084 break; 1084 break;
1085 1085
1086 case ServiceEvent.kIsolateStart: 1086 case ServiceEvent.kIsolateStart:
1087 case ServiceEvent.kGraph: 1087 case ServiceEvent.kGraph:
1088 case ServiceEvent.kGC: 1088 case ServiceEvent.kGC:
1089 case ServiceEvent.kInspect:
1089 break; 1090 break;
1090 1091
1091 default: 1092 default:
1092 console.print('Unrecognized event: $event'); 1093 console.print('Unrecognized event: $event');
1093 break; 1094 break;
1094 } 1095 }
1095 } 1096 }
1096 1097
1097 static String _commonPrefix(String a, String b) { 1098 static String _commonPrefix(String a, String b) {
1098 int pos = 0; 1099 int pos = 0;
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 default: 1643 default:
1643 busy = false; 1644 busy = false;
1644 break; 1645 break;
1645 } 1646 }
1646 }); 1647 });
1647 } 1648 }
1648 1649
1649 DebuggerInputElement.created() : super.created(); 1650 DebuggerInputElement.created() : super.created();
1650 } 1651 }
1651 1652
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/application.dart ('k') | runtime/observatory/lib/src/elements/nav_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698