| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /** | 5 /** |
| 6 * This file is an "idl" style description of the summary format. It | 6 * This file is an "idl" style description of the summary format. It |
| 7 * contains abstract classes which declare the interface for reading data from | 7 * contains abstract classes which declare the interface for reading data from |
| 8 * summaries. It is parsed and transformed into code that implements the | 8 * summaries. It is parsed and transformed into code that implements the |
| 9 * summary format. | 9 * summary format. |
| 10 * | 10 * |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 * [PackageBundleAssembler.currentMinorVersion]. | 620 * [PackageBundleAssembler.currentMinorVersion]. |
| 621 */ | 621 */ |
| 622 @Id(6) | 622 @Id(6) |
| 623 int get minorVersion; | 623 int get minorVersion; |
| 624 | 624 |
| 625 /** | 625 /** |
| 626 * List of MD5 hashes of the files listed in [unlinkedUnitUris]. Each hash | 626 * List of MD5 hashes of the files listed in [unlinkedUnitUris]. Each hash |
| 627 * is encoded as a hexadecimal string using lower case letters. | 627 * is encoded as a hexadecimal string using lower case letters. |
| 628 */ | 628 */ |
| 629 @Id(4) | 629 @Id(4) |
| 630 @informative |
| 630 List<String> get unlinkedUnitHashes; | 631 List<String> get unlinkedUnitHashes; |
| 631 | 632 |
| 632 /** | 633 /** |
| 633 * Unlinked information for the compilation units constituting the package. | 634 * Unlinked information for the compilation units constituting the package. |
| 634 */ | 635 */ |
| 635 @Id(2) | 636 @Id(2) |
| 636 List<UnlinkedUnit> get unlinkedUnits; | 637 List<UnlinkedUnit> get unlinkedUnits; |
| 637 | 638 |
| 638 /** | 639 /** |
| 639 * The list of URIs of items in [unlinkedUnits], e.g. `dart:core/bool.dart`. | 640 * The list of URIs of items in [unlinkedUnits], e.g. `dart:core/bool.dart`. |
| (...skipping 2044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2684 */ | 2685 */ |
| 2685 @Id(11) | 2686 @Id(11) |
| 2686 int get visibleLength; | 2687 int get visibleLength; |
| 2687 | 2688 |
| 2688 /** | 2689 /** |
| 2689 * If a local variable, the beginning of the visible range; zero otherwise. | 2690 * If a local variable, the beginning of the visible range; zero otherwise. |
| 2690 */ | 2691 */ |
| 2691 @Id(12) | 2692 @Id(12) |
| 2692 int get visibleOffset; | 2693 int get visibleOffset; |
| 2693 } | 2694 } |
| OLD | NEW |