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

Unified Diff: pkg/analysis_server/bin/fuzz/server_manager.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/bin/fuzz.dart ('k') | pkg/analysis_server/lib/driver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/bin/fuzz/server_manager.dart
diff --git a/pkg/analysis_server/bin/fuzz/server_manager.dart b/pkg/analysis_server/bin/fuzz/server_manager.dart
index 59c1b03ac831d7c29495479f045b868eebd2f835..e9dcf24d81065ed1b05e0de93ca457a5b3fb558b 100644
--- a/pkg/analysis_server/bin/fuzz/server_manager.dart
+++ b/pkg/analysis_server/bin/fuzz/server_manager.dart
@@ -195,8 +195,9 @@ class ServerManager {
Future<AnalysisResults> analyze(Directory appDir) {
this.appDir = appDir;
Stopwatch stopwatch = new Stopwatch()..start();
- Request request =
- new AnalysisSetAnalysisRootsParams([appDir.path], []).toRequest(_nextRequestId);
+ Request request = new AnalysisSetAnalysisRootsParams(
+ [appDir.path],
+ []).toRequest(_nextRequestId);
// Request analysis
return channel.sendRequest(request).then((Response response) {
@@ -275,8 +276,8 @@ class ServerManager {
* Return when the server has acknowledged that request.
*/
Future setSubscriptions() {
- Request request =
- new ServerSetSubscriptionsParams([ServerService.STATUS]).toRequest(_nextRequestId);
+ Request request = new ServerSetSubscriptionsParams(
+ [ServerService.STATUS]).toRequest(_nextRequestId);
return channel.sendRequest(request);
}
« no previous file with comments | « pkg/analysis_server/bin/fuzz.dart ('k') | pkg/analysis_server/lib/driver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698