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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 * This notification is not subscribed to by default. Clients can subscribe | 822 * This notification is not subscribed to by default. Clients can subscribe |
823 * by including the value "OUTLINE" in the list of services passed in an | 823 * by including the value "OUTLINE" in the list of services passed in an |
824 * analysis.setSubscriptions request. | 824 * analysis.setSubscriptions request. |
825 * | 825 * |
826 * Parameters | 826 * Parameters |
827 * | 827 * |
828 * file ( FilePath ) | 828 * file ( FilePath ) |
829 * | 829 * |
830 * The file with which the outline is associated. | 830 * The file with which the outline is associated. |
831 * | 831 * |
| 832 * libraryName ( String ) |
| 833 * |
| 834 * The name of the library defined by the file. |
| 835 * |
832 * outline ( Outline ) | 836 * outline ( Outline ) |
833 * | 837 * |
834 * The outline associated with the file. | 838 * The outline associated with the file. |
| 839 * |
| 840 * partOfLibraryName ( String ) |
| 841 * |
| 842 * The name of the library the file in a part of. |
835 */ | 843 */ |
836 Stream<AnalysisOutlineParams> onAnalysisOutline; | 844 Stream<AnalysisOutlineParams> onAnalysisOutline; |
837 | 845 |
838 /** | 846 /** |
839 * Stream controller for [onAnalysisOutline]. | 847 * Stream controller for [onAnalysisOutline]. |
840 */ | 848 */ |
841 StreamController<AnalysisOutlineParams> _onAnalysisOutline; | 849 StreamController<AnalysisOutlineParams> _onAnalysisOutline; |
842 | 850 |
843 /** | 851 /** |
844 * Reports the overridding members in a file. | 852 * Reports the overridding members in a file. |
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1730 case "execution.launchData": | 1738 case "execution.launchData": |
1731 expect(params, isExecutionLaunchDataParams); | 1739 expect(params, isExecutionLaunchDataParams); |
1732 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); | 1740 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); |
1733 break; | 1741 break; |
1734 default: | 1742 default: |
1735 fail('Unexpected notification: $event'); | 1743 fail('Unexpected notification: $event'); |
1736 break; | 1744 break; |
1737 } | 1745 } |
1738 } | 1746 } |
1739 } | 1747 } |
OLD | NEW |