| 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/spec/generate_files". | 7 // "pkg/analysis_server/spec/generate_files". |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Convenience methods for running integration tests | 10 * Convenience methods for running integration tests |
| (...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1140 * labeled as “Options”. This field can be omitted if the refactoring does | 1140 * labeled as “Options”. This field can be omitted if the refactoring does |
| 1141 * not require any options or if the values of those options are not known. | 1141 * not require any options or if the values of those options are not known. |
| 1142 * | 1142 * |
| 1143 * Returns | 1143 * Returns |
| 1144 * | 1144 * |
| 1145 * problems ( List<RefactoringProblem> ) | 1145 * problems ( List<RefactoringProblem> ) |
| 1146 * | 1146 * |
| 1147 * The status of the refactoring. The array will be empty if there are no | 1147 * The status of the refactoring. The array will be empty if there are no |
| 1148 * known problems. | 1148 * known problems. |
| 1149 * | 1149 * |
| 1150 * feedback ( optional object ) | 1150 * feedback ( optional RefactoringFeedback ) |
| 1151 * | 1151 * |
| 1152 * Data used to provide feedback to the user. The structure of the data is | 1152 * Data used to provide feedback to the user. The structure of the data is |
| 1153 * dependent on the kind of refactoring being created. The data that is | 1153 * dependent on the kind of refactoring being created. The data that is |
| 1154 * returned is documented in the section titled Refactorings, labeled as | 1154 * returned is documented in the section titled Refactorings, labeled as |
| 1155 * “Feedback”. | 1155 * “Feedback”. |
| 1156 * | 1156 * |
| 1157 * change ( optional SourceChange ) | 1157 * change ( optional SourceChange ) |
| 1158 * | 1158 * |
| 1159 * The changes that are to be applied to affect the refactoring. This field | 1159 * The changes that are to be applied to affect the refactoring. This field |
| 1160 * will be omitted if there are problems that prevent a set of changes from | 1160 * will be omitted if there are problems that prevent a set of changes from |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1463 case "debug.launchData": | 1463 case "debug.launchData": |
| 1464 expect(params, isDebugLaunchDataParams); | 1464 expect(params, isDebugLaunchDataParams); |
| 1465 _onDebugLaunchData.add(params); | 1465 _onDebugLaunchData.add(params); |
| 1466 break; | 1466 break; |
| 1467 default: | 1467 default: |
| 1468 fail('Unexpected notification: $event'); | 1468 fail('Unexpected notification: $event'); |
| 1469 break; | 1469 break; |
| 1470 } | 1470 } |
| 1471 } | 1471 } |
| 1472 } | 1472 } |
| OLD | NEW |