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

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

Issue 766323002: Compressed/optimized navigation notification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updates for review comments. Created 6 years 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
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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 * 536 *
537 * regions ( List<NavigationRegion> ) 537 * regions ( List<NavigationRegion> )
538 * 538 *
539 * The navigation regions contained in the file. The regions are sorted by 539 * The navigation regions contained in the file. The regions are sorted by
540 * their offsets. Each navigation region represents a list of targets 540 * their offsets. Each navigation region represents a list of targets
541 * associated with some range. The lists will usually contain a single 541 * associated with some range. The lists will usually contain a single
542 * target, but can contain more in the case of a part that is included in 542 * target, but can contain more in the case of a part that is included in
543 * multiple libraries or in Dart code that is compiled against multiple 543 * multiple libraries or in Dart code that is compiled against multiple
544 * versions of a package. Note that the navigation regions that are 544 * versions of a package. Note that the navigation regions that are
545 * returned do not overlap other navigation regions. 545 * returned do not overlap other navigation regions.
546 *
547 * targets ( List<NavigationTarget> )
548 *
549 * The navigation targets referenced in the file. They are referenced by
550 * NavigationRegions by their index in this array.
551 *
552 * files ( List<FilePath> )
553 *
554 * The files containing navigation targets referenced in the file. They are
555 * referenced by NavigationTargets by their index in this array.
546 */ 556 */
547 Stream<AnalysisNavigationParams> onAnalysisNavigation; 557 Stream<AnalysisNavigationParams> onAnalysisNavigation;
548 558
549 /** 559 /**
550 * Stream controller for [onAnalysisNavigation]. 560 * Stream controller for [onAnalysisNavigation].
551 */ 561 */
552 StreamController<AnalysisNavigationParams> _onAnalysisNavigation; 562 StreamController<AnalysisNavigationParams> _onAnalysisNavigation;
553 563
554 /** 564 /**
555 * Reports the occurrences of references to elements within a single file. 565 * Reports the occurrences of references to elements within a single file.
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 case "execution.launchData": 1367 case "execution.launchData":
1358 expect(params, isExecutionLaunchDataParams); 1368 expect(params, isExecutionLaunchDataParams);
1359 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1369 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1360 break; 1370 break;
1361 default: 1371 default:
1362 fail('Unexpected notification: $event'); 1372 fail('Unexpected notification: $event');
1363 break; 1373 break;
1364 } 1374 }
1365 } 1375 }
1366 } 1376 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698