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

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

Issue 3002513002: Update the version of the server API spec for analysis.closingLabels (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'dart:core'; 7 import 'dart:core';
8 import 'dart:io' as io; 8 import 'dart:io' as io;
9 import 'dart:math' show max; 9 import 'dart:math' show max;
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 /** 94 /**
95 * Instances of the class [AnalysisServer] implement a server that listens on a 95 * Instances of the class [AnalysisServer] implement a server that listens on a
96 * [CommunicationChannel] for analysis requests and process them. 96 * [CommunicationChannel] for analysis requests and process them.
97 */ 97 */
98 class AnalysisServer { 98 class AnalysisServer {
99 /** 99 /**
100 * The version of the analysis server. The value should be replaced 100 * The version of the analysis server. The value should be replaced
101 * automatically during the build. 101 * automatically during the build.
102 */ 102 */
103 static final String VERSION = '1.18.3'; 103 static final String VERSION = '1.18.4';
104 104
105 /** 105 /**
106 * The options of this server instance. 106 * The options of this server instance.
107 */ 107 */
108 AnalysisServerOptions options; 108 AnalysisServerOptions options;
109 109
110 /** 110 /**
111 * The channel from which requests are received and to which responses should 111 * The channel from which requests are received and to which responses should
112 * be sent. 112 * be sent.
113 */ 113 */
(...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 /** 1504 /**
1505 * The [PerformanceTag] for time spent in server request handlers. 1505 * The [PerformanceTag] for time spent in server request handlers.
1506 */ 1506 */
1507 static PerformanceTag serverRequests = server.createChild('requests'); 1507 static PerformanceTag serverRequests = server.createChild('requests');
1508 1508
1509 /** 1509 /**
1510 * The [PerformanceTag] for time spent in split store microtasks. 1510 * The [PerformanceTag] for time spent in split store microtasks.
1511 */ 1511 */
1512 static PerformanceTag splitStore = new PerformanceTag('splitStore'); 1512 static PerformanceTag splitStore = new PerformanceTag('splitStore');
1513 } 1513 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698