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

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

Issue 2862383002: Clarify presentation of the target in retaining paths. (Closed)
Patch Set: review Created 3 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 objectpool_view; 5 library objectpool_view;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'package:observatory/models.dart' as M; 9 import 'package:observatory/models.dart' as M;
10 import 'package:observatory/src/elements/context_ref.dart'; 10 import 'package:observatory/src/elements/context_ref.dart';
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 return [ 165 return [
166 new SpanElement() 166 new SpanElement()
167 ..text = 'Immediate 0x${entry.asInteger.toRadixString(16)}' 167 ..text = 'Immediate 0x${entry.asInteger.toRadixString(16)}'
168 ]; 168 ];
169 case M.ObjectPoolEntryKind.nativeEntry: 169 case M.ObjectPoolEntryKind.nativeEntry:
170 return [ 170 return [
171 new SpanElement() 171 new SpanElement()
172 ..text = 'NativeEntry 0x${entry.asInteger.toRadixString(16)}' 172 ..text = 'NativeEntry 0x${entry.asInteger.toRadixString(16)}'
173 ]; 173 ];
174 } 174 }
175 throw new Exception('Unkown ObjectPoolEntryKind (${entry.kind})'); 175 throw new Exception('Unknown ObjectPoolEntryKind (${entry.kind})');
176 } 176 }
177 } 177 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/instance_ref.dart ('k') | runtime/observatory/lib/src/elements/retaining_path.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698