| 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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 * The outline associated with the file. | 847 * The outline associated with the file. |
| 848 */ | 848 */ |
| 849 Stream<AnalysisOutlineParams> onAnalysisOutline; | 849 Stream<AnalysisOutlineParams> onAnalysisOutline; |
| 850 | 850 |
| 851 /** | 851 /** |
| 852 * Stream controller for [onAnalysisOutline]. | 852 * Stream controller for [onAnalysisOutline]. |
| 853 */ | 853 */ |
| 854 StreamController<AnalysisOutlineParams> _onAnalysisOutline; | 854 StreamController<AnalysisOutlineParams> _onAnalysisOutline; |
| 855 | 855 |
| 856 /** | 856 /** |
| 857 * Reports the overridding members in a file. | 857 * Reports the overriding members in a file. |
| 858 * | 858 * |
| 859 * This notification is not subscribed to by default. Clients can subscribe | 859 * This notification is not subscribed to by default. Clients can subscribe |
| 860 * by including the value "OVERRIDES" in the list of services passed in an | 860 * by including the value "OVERRIDES" in the list of services passed in an |
| 861 * analysis.setSubscriptions request. | 861 * analysis.setSubscriptions request. |
| 862 * | 862 * |
| 863 * Parameters | 863 * Parameters |
| 864 * | 864 * |
| 865 * file ( FilePath ) | 865 * file ( FilePath ) |
| 866 * | 866 * |
| 867 * The file with which the overrides are associated. | 867 * The file with which the overrides are associated. |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 | 1438 |
| 1439 /** | 1439 /** |
| 1440 * Organizes all of the directives - removes unused imports and sorts | 1440 * Organizes all of the directives - removes unused imports and sorts |
| 1441 * directives of the given Dart file according to the Dart Style Guide. | 1441 * directives of the given Dart file according to the Dart Style Guide. |
| 1442 * | 1442 * |
| 1443 * If a request is made for a file that does not exist, does not belong to an | 1443 * If a request is made for a file that does not exist, does not belong to an |
| 1444 * analysis root or is not a Dart file, FILE_NOT_ANALYZED will be generated. | 1444 * analysis root or is not a Dart file, FILE_NOT_ANALYZED will be generated. |
| 1445 * | 1445 * |
| 1446 * If directives of the Dart file cannot be organized, for example because it | 1446 * If directives of the Dart file cannot be organized, for example because it |
| 1447 * has scan or parse errors, or by other reasons, ORGANIZE_DIRECTIVES_ERROR | 1447 * has scan or parse errors, or by other reasons, ORGANIZE_DIRECTIVES_ERROR |
| 1448 * will be generated. The message will provide datails about the reason. | 1448 * will be generated. The message will provide details about the reason. |
| 1449 * | 1449 * |
| 1450 * Parameters | 1450 * Parameters |
| 1451 * | 1451 * |
| 1452 * file ( FilePath ) | 1452 * file ( FilePath ) |
| 1453 * | 1453 * |
| 1454 * The Dart file to organize directives in. | 1454 * The Dart file to organize directives in. |
| 1455 * | 1455 * |
| 1456 * Returns | 1456 * Returns |
| 1457 * | 1457 * |
| 1458 * edit ( SourceFileEdit ) | 1458 * edit ( SourceFileEdit ) |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1743 case "execution.launchData": | 1743 case "execution.launchData": |
| 1744 expect(params, isExecutionLaunchDataParams); | 1744 expect(params, isExecutionLaunchDataParams); |
| 1745 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); | 1745 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); |
| 1746 break; | 1746 break; |
| 1747 default: | 1747 default: |
| 1748 fail('Unexpected notification: $event'); | 1748 fail('Unexpected notification: $event'); |
| 1749 break; | 1749 break; |
| 1750 } | 1750 } |
| 1751 } | 1751 } |
| 1752 } | 1752 } |
| OLD | NEW |