| 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/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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 * The outline associated with the file. | 629 * The outline associated with the file. |
| 630 */ | 630 */ |
| 631 Stream onAnalysisOutline; | 631 Stream onAnalysisOutline; |
| 632 | 632 |
| 633 /** | 633 /** |
| 634 * Stream controller for [onAnalysisOutline]. | 634 * Stream controller for [onAnalysisOutline]. |
| 635 */ | 635 */ |
| 636 StreamController _onAnalysisOutline; | 636 StreamController _onAnalysisOutline; |
| 637 | 637 |
| 638 /** | 638 /** |
| 639 * Reports the overridding members in a file. This notification currently | 639 * Reports the overridding members in a file. |
| 640 * includes only members that override a member from a superclass. In | |
| 641 * particular, it does not include members that override members from | |
| 642 * interfaces. | |
| 643 * | 640 * |
| 644 * This notification is not subscribed to by default. Clients can subscribe | 641 * This notification is not subscribed to by default. Clients can subscribe |
| 645 * by including the value "OVERRIDES" in the list of services passed in an | 642 * by including the value "OVERRIDES" in the list of services passed in an |
| 646 * analysis.setSubscriptions request. | 643 * analysis.setSubscriptions request. |
| 647 * | 644 * |
| 648 * Parameters | 645 * Parameters |
| 649 * | 646 * |
| 650 * file ( FilePath ) | 647 * file ( FilePath ) |
| 651 * | 648 * |
| 652 * The file with which the overrides are associated. | 649 * The file with which the overrides are associated. |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 case "debug.launchData": | 1442 case "debug.launchData": |
| 1446 expect(params, isDebugLaunchDataParams); | 1443 expect(params, isDebugLaunchDataParams); |
| 1447 _onDebugLaunchData.add(params); | 1444 _onDebugLaunchData.add(params); |
| 1448 break; | 1445 break; |
| 1449 default: | 1446 default: |
| 1450 fail('Unexpected notification: $event'); | 1447 fail('Unexpected notification: $event'); |
| 1451 break; | 1448 break; |
| 1452 } | 1449 } |
| 1453 } | 1450 } |
| 1454 } | 1451 } |
| OLD | NEW |