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

Side by Side Diff: pkg/analyzer/lib/src/summary/idl.dart

Issue 1910553002: Don't compute hashes in "--build-summary-exclude-informative" mode. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/summarize_elements.dart » ('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) 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/summarize_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698