| OLD | NEW |
| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 * This notification is not subscribed to by default. Clients can subscribe | 134 * This notification is not subscribed to by default. Clients can subscribe |
| 135 * by including the value "STATUS" in the list of services passed in a | 135 * by including the value "STATUS" in the list of services passed in a |
| 136 * server.setSubscriptions request. | 136 * server.setSubscriptions request. |
| 137 * | 137 * |
| 138 * Parameters | 138 * Parameters |
| 139 * | 139 * |
| 140 * analysis ( optional AnalysisStatus ) | 140 * analysis ( optional AnalysisStatus ) |
| 141 * | 141 * |
| 142 * The current status of analysis, including whether analysis is being | 142 * The current status of analysis, including whether analysis is being |
| 143 * performed and if so what is being analyzed. | 143 * performed and if so what is being analyzed. |
| 144 * |
| 145 * pub ( optional PubStatus ) |
| 146 * |
| 147 * The current status of pub execution, indicating whether we are currently |
| 148 * running pub. |
| 144 */ | 149 */ |
| 145 Stream<ServerStatusParams> onServerStatus; | 150 Stream<ServerStatusParams> onServerStatus; |
| 146 | 151 |
| 147 /** | 152 /** |
| 148 * Stream controller for [onServerStatus]. | 153 * Stream controller for [onServerStatus]. |
| 149 */ | 154 */ |
| 150 StreamController<ServerStatusParams> _onServerStatus; | 155 StreamController<ServerStatusParams> _onServerStatus; |
| 151 | 156 |
| 152 /** | 157 /** |
| 153 * Return the errors associated with the given file. If the errors for the | 158 * Return the errors associated with the given file. If the errors for the |
| (...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1468 case "execution.launchData": | 1473 case "execution.launchData": |
| 1469 expect(params, isExecutionLaunchDataParams); | 1474 expect(params, isExecutionLaunchDataParams); |
| 1470 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); | 1475 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); |
| 1471 break; | 1476 break; |
| 1472 default: | 1477 default: |
| 1473 fail('Unexpected notification: $event'); | 1478 fail('Unexpected notification: $event'); |
| 1474 break; | 1479 break; |
| 1475 } | 1480 } |
| 1476 } | 1481 } |
| 1477 } | 1482 } |
| OLD | NEW |