| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 * analysis.setSubscriptions request. | 514 * analysis.setSubscriptions request. |
| 515 * | 515 * |
| 516 * Parameters | 516 * Parameters |
| 517 * | 517 * |
| 518 * file ( FilePath ) | 518 * file ( FilePath ) |
| 519 * | 519 * |
| 520 * The file containing the navigation regions. | 520 * The file containing the navigation regions. |
| 521 * | 521 * |
| 522 * regions ( List<NavigationRegion> ) | 522 * regions ( List<NavigationRegion> ) |
| 523 * | 523 * |
| 524 * The navigation regions contained in the file. Each navigation region | 524 * The navigation regions contained in the file. The regions are sorted by |
| 525 * represents a list of targets associated with some range. The lists will | 525 * their offsets. Each navigation region represents a list of targets |
| 526 * usually contain a single target, but can contain more in the case of a | 526 * associated with some range. The lists will usually contain a single |
| 527 * part that is included in multiple libraries or in Dart code that is | 527 * target, but can contain more in the case of a part that is included in |
| 528 * compiled against multiple versions of a package. Note that the | 528 * multiple libraries or in Dart code that is compiled against multiple |
| 529 * navigation regions that are returned do not overlap other navigation | 529 * versions of a package. Note that the navigation regions that are |
| 530 * regions. | 530 * returned do not overlap other navigation regions. |
| 531 */ | 531 */ |
| 532 Stream<AnalysisNavigationParams> onAnalysisNavigation; | 532 Stream<AnalysisNavigationParams> onAnalysisNavigation; |
| 533 | 533 |
| 534 /** | 534 /** |
| 535 * Stream controller for [onAnalysisNavigation]. | 535 * Stream controller for [onAnalysisNavigation]. |
| 536 */ | 536 */ |
| 537 StreamController<AnalysisNavigationParams> _onAnalysisNavigation; | 537 StreamController<AnalysisNavigationParams> _onAnalysisNavigation; |
| 538 | 538 |
| 539 /** | 539 /** |
| 540 * Reports the occurrences of references to elements within a single file. | 540 * Reports the occurrences of references to elements within a single file. |
| (...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 case "execution.launchData": | 1342 case "execution.launchData": |
| 1343 expect(params, isExecutionLaunchDataParams); | 1343 expect(params, isExecutionLaunchDataParams); |
| 1344 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); | 1344 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); |
| 1345 break; | 1345 break; |
| 1346 default: | 1346 default: |
| 1347 fail('Unexpected notification: $event'); | 1347 fail('Unexpected notification: $event'); |
| 1348 break; | 1348 break; |
| 1349 } | 1349 } |
| 1350 } | 1350 } |
| 1351 } | 1351 } |
| OLD | NEW |