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

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

Issue 2298563002: Removed const from classes arrays in Observatory (Closed)
Patch Set: Created 4 years, 3 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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:async'; 6 import 'dart:async';
7 import 'package:observatory/models.dart' as M; 7 import 'package:observatory/models.dart' as M;
8 import 'package:observatory/src/elements/curly_block.dart'; 8 import 'package:observatory/src/elements/curly_block.dart';
9 import 'package:observatory/src/elements/instance_ref.dart'; 9 import 'package:observatory/src/elements/instance_ref.dart';
10 import 'package:observatory/src/elements/helpers/any_ref.dart'; 10 import 'package:observatory/src/elements/helpers/any_ref.dart';
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 ); 113 );
114 } 114 }
115 115
116 content.addAll([ 116 content.addAll([
117 anyRef(_isolate, reference.source, _instances, queue: _r.queue), 117 anyRef(_isolate, reference.source, _instances, queue: _r.queue),
118 new SpanElement()..text = ' referenced by ', 118 new SpanElement()..text = ' referenced by ',
119 new InboundReferencesElement(_isolate, reference.source, _references, 119 new InboundReferencesElement(_isolate, reference.source, _references,
120 _instances, queue: _r.queue ) 120 _instances, queue: _r.queue )
121 ]); 121 ]);
122 122
123 return new DivElement()..classes = ['indent']..children = content; 123 return new DivElement()..classes = ['indent']
124 ..children = content;
124 } 125 }
125 } 126 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/icdata_view.dart ('k') | runtime/observatory/lib/src/elements/instance_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698