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

Side by Side Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 2088663004: Adds PID to `server.connected` notification (#26744). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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) 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 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 /** 9 /**
10 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 * the server has started running but before any requests are processed to 87 * the server has started running but before any requests are processed to
88 * let the client know that it started correctly. 88 * let the client know that it started correctly.
89 * 89 *
90 * It is not possible to subscribe to or unsubscribe from this notification. 90 * It is not possible to subscribe to or unsubscribe from this notification.
91 * 91 *
92 * Parameters 92 * Parameters
93 * 93 *
94 * version ( String ) 94 * version ( String )
95 * 95 *
96 * The version number of the analysis server. 96 * The version number of the analysis server.
97 *
98 * pid ( String )
99 *
100 * The process id of the analysis server process.
97 */ 101 */
98 Stream<ServerConnectedParams> onServerConnected; 102 Stream<ServerConnectedParams> onServerConnected;
99 103
100 /** 104 /**
101 * Stream controller for [onServerConnected]. 105 * Stream controller for [onServerConnected].
102 */ 106 */
103 StreamController<ServerConnectedParams> _onServerConnected; 107 StreamController<ServerConnectedParams> _onServerConnected;
104 108
105 /** 109 /**
106 * Reports that an unexpected error has occurred while executing the server. 110 * Reports that an unexpected error has occurred while executing the server.
(...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 case "execution.launchData": 1806 case "execution.launchData":
1803 expect(params, isExecutionLaunchDataParams); 1807 expect(params, isExecutionLaunchDataParams);
1804 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1808 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1805 break; 1809 break;
1806 default: 1810 default:
1807 fail('Unexpected notification: $event'); 1811 fail('Unexpected notification: $event');
1808 break; 1812 break;
1809 } 1813 }
1810 } 1814 }
1811 } 1815 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698