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

Side by Side Diff: pkg/analysis_server/lib/src/get_handler.dart

Issue 139983004: Server code clean-up (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « pkg/analysis_server/lib/src/domain_server.dart ('k') | pkg/analysis_server/test/mocks.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library get.handler; 1 library get.handler;
2 2
3 import 'dart:io'; 3 import 'dart:io';
4 4
5 import 'package:analyzer/src/generated/engine.dart'; 5 import 'package:analyzer/src/generated/engine.dart';
6 6
7 import 'analysis_server.dart'; 7 import 'package:analysis_server/src/analysis_server.dart';
8 8
9 /** 9 /**
10 * Instances of the class [GetHandler] handle GET requests 10 * Instances of the class [GetHandler] handle GET requests
11 */ 11 */
12 class GetHandler { 12 class GetHandler {
13 /** 13 /**
14 * The path used to request the status of the analysis server as a whole. 14 * The path used to request the status of the analysis server as a whole.
15 */ 15 */
16 static const String STATUS_PATH = '/status'; 16 static const String STATUS_PATH = '/status';
17 17
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 response.write(value); 147 response.write(value);
148 response.write('</td>'); 148 response.write('</td>');
149 }); 149 });
150 if (header) { 150 if (header) {
151 response.write('</th>'); 151 response.write('</th>');
152 } else { 152 } else {
153 response.write('</tr>'); 153 response.write('</tr>');
154 } 154 }
155 } 155 }
156 } 156 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/domain_server.dart ('k') | pkg/analysis_server/test/mocks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698