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

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

Issue 474583002: Document the fact that client must filter results from completion.results. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 * said identifier. 718 * said identifier.
719 * 719 *
720 * replacementLength ( int ) 720 * replacementLength ( int )
721 * 721 *
722 * The length of the text to be replaced if the remainder of the identifier 722 * The length of the text to be replaced if the remainder of the identifier
723 * containing the cursor is to be replaced when the suggestion is applied 723 * containing the cursor is to be replaced when the suggestion is applied
724 * (that is, the number of characters in the existing identifier). 724 * (that is, the number of characters in the existing identifier).
725 * 725 *
726 * results ( List<CompletionSuggestion> ) 726 * results ( List<CompletionSuggestion> )
727 * 727 *
728 * The completion suggestions being reported. 728 * The completion suggestions being reported. The notification contains all
729 * possible completions at the requested cursor position, even those that
730 * do not match the characters the user has already typed. This allows the
731 * client to respond to further keystrokes from the user without having to
732 * make additional requests.
729 * 733 *
730 * last ( bool ) 734 * last ( bool )
731 * 735 *
732 * True if this is that last set of results that will be returned for the 736 * True if this is that last set of results that will be returned for the
733 * indicated completion. 737 * indicated completion.
734 */ 738 */
735 Stream onCompletionResults; 739 Stream onCompletionResults;
736 740
737 /** 741 /**
738 * Stream controller for [onCompletionResults]. 742 * Stream controller for [onCompletionResults].
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
1441 case "debug.launchData": 1445 case "debug.launchData":
1442 expect(params, isDebugLaunchDataParams); 1446 expect(params, isDebugLaunchDataParams);
1443 _onDebugLaunchData.add(params); 1447 _onDebugLaunchData.add(params);
1444 break; 1448 break;
1445 default: 1449 default:
1446 fail('Unexpected notification: $event'); 1450 fail('Unexpected notification: $event');
1447 break; 1451 break;
1448 } 1452 }
1449 } 1453 }
1450 } 1454 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698