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

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

Issue 1375163003: Specification change for the 'libraryName' and 'partOfLibraryName' fields in Outline. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: tweak Created 5 years, 2 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 * kind ( FileKind )
833 *
834 * The kind of the file.
835 *
836 * libraryName ( optional String )
837 *
838 * The name of the library defined by the file using a "library" directive,
839 * or referenced by a "part of" directive. If both "library" and "part of"
840 * directives are present, then the "library" directive takes precedence.
841 * This field will be omitted if the file has neither "library" nor "part
842 * of" directives.
843 *
832 * outline ( Outline ) 844 * outline ( Outline )
833 * 845 *
834 * The outline associated with the file. 846 * The outline associated with the file.
835 */ 847 */
836 Stream<AnalysisOutlineParams> onAnalysisOutline; 848 Stream<AnalysisOutlineParams> onAnalysisOutline;
837 849
838 /** 850 /**
839 * Stream controller for [onAnalysisOutline]. 851 * Stream controller for [onAnalysisOutline].
840 */ 852 */
841 StreamController<AnalysisOutlineParams> _onAnalysisOutline; 853 StreamController<AnalysisOutlineParams> _onAnalysisOutline;
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
1730 case "execution.launchData": 1742 case "execution.launchData":
1731 expect(params, isExecutionLaunchDataParams); 1743 expect(params, isExecutionLaunchDataParams);
1732 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1744 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1733 break; 1745 break;
1734 default: 1746 default:
1735 fail('Unexpected notification: $event'); 1747 fail('Unexpected notification: $event');
1736 break; 1748 break;
1737 } 1749 }
1738 } 1750 }
1739 } 1751 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698