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

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

Issue 2359233002: Add support for getting the sessionId from instrumentation and sending it to the client (Closed)
Patch Set: Created 4 years, 3 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 * 85 *
86 * Parameters 86 * Parameters
87 * 87 *
88 * version (String) 88 * version (String)
89 * 89 *
90 * The version number of the analysis server. 90 * The version number of the analysis server.
91 * 91 *
92 * pid (int) 92 * pid (int)
93 * 93 *
94 * The process id of the analysis server process. 94 * The process id of the analysis server process.
95 *
96 * sessionId (optional String)
97 *
98 * The session id for this session.
95 */ 99 */
96 Stream<ServerConnectedParams> onServerConnected; 100 Stream<ServerConnectedParams> onServerConnected;
97 101
98 /** 102 /**
99 * Stream controller for [onServerConnected]. 103 * Stream controller for [onServerConnected].
100 */ 104 */
101 StreamController<ServerConnectedParams> _onServerConnected; 105 StreamController<ServerConnectedParams> _onServerConnected;
102 106
103 /** 107 /**
104 * Reports that an unexpected error has occurred while executing the server. 108 * Reports that an unexpected error has occurred while executing the server.
(...skipping 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 case "execution.launchData": 1744 case "execution.launchData":
1741 expect(params, isExecutionLaunchDataParams); 1745 expect(params, isExecutionLaunchDataParams);
1742 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1746 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1743 break; 1747 break;
1744 default: 1748 default:
1745 fail('Unexpected notification: $event'); 1749 fail('Unexpected notification: $event');
1746 break; 1750 break;
1747 } 1751 }
1748 } 1752 }
1749 } 1753 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698