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

Side by Side Diff: pkg/analysis_server/tool/instrumentation/page/log_page.dart

Issue 2394733004: Clean up hints (Closed)
Patch Set: Created 4 years, 2 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:collection';
6 import 'dart:math' as math; 5 import 'dart:math' as math;
7 6
8 import '../log/log.dart'; 7 import '../log/log.dart';
9 import '../server.dart'; 8 import '../server.dart';
10 import 'page_writer.dart'; 9 import 'page_writer.dart';
11 10
12 /** 11 /**
13 * A page writer that will produce the page containing access to the full 12 * A page writer that will produce the page containing access to the full
14 * content of the log. 13 * content of the log.
15 */ 14 */
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 void _writeRightColumn(StringSink sink) { 273 void _writeRightColumn(StringSink sink) {
275 // 274 //
276 // Write the header of the column. 275 // Write the header of the column.
277 // 276 //
278 sink.writeln('<div class="columnHeader">'); 277 sink.writeln('<div class="columnHeader">');
279 sink.writeln('<p><b>Entry Details</b></p>'); 278 sink.writeln('<p><b>Entry Details</b></p>');
280 sink.writeln('</div>'); 279 sink.writeln('</div>');
281 sink.writeln('<div id="details"></div>'); 280 sink.writeln('<div id="details"></div>');
282 } 281 }
283 } 282 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698