| 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 // 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 "pkg/analyzer/tool/generate_files". | 6 // To regenerate the file, use the script "pkg/analyzer/tool/generate_files". |
| 7 | 7 |
| 8 library analyzer.src.summary.format; | 8 library analyzer.src.summary.format; |
| 9 | 9 |
| 10 import 'flat_buffers.dart' as fb; | 10 import 'flat_buffers.dart' as fb; |
| (...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 void set elementUnits(List<int> _value) { | 1670 void set elementUnits(List<int> _value) { |
| 1671 assert(!_finished); | 1671 assert(!_finished); |
| 1672 assert(_value == null || _value.every((e) => e >= 0)); | 1672 assert(_value == null || _value.every((e) => e >= 0)); |
| 1673 _elementUnits = _value; | 1673 _elementUnits = _value; |
| 1674 } | 1674 } |
| 1675 | 1675 |
| 1676 @override | 1676 @override |
| 1677 List<String> get strings => _strings ??= <String>[]; | 1677 List<String> get strings => _strings ??= <String>[]; |
| 1678 | 1678 |
| 1679 /** | 1679 /** |
| 1680 * List of unique element strings used in this [PackageIndex]. | 1680 * List of unique element strings used in this [PackageIndex]. The list is |
| 1681 * sorted in ascending order, so that the client can quickly check the |
| 1682 * presence of a string in this [PackageIndex]. |
| 1681 */ | 1683 */ |
| 1682 void set strings(List<String> _value) { | 1684 void set strings(List<String> _value) { |
| 1683 assert(!_finished); | 1685 assert(!_finished); |
| 1684 _strings = _value; | 1686 _strings = _value; |
| 1685 } | 1687 } |
| 1686 | 1688 |
| 1687 @override | 1689 @override |
| 1688 List<int> get unitLibraryUris => _unitLibraryUris ??= <int>[]; | 1690 List<int> get unitLibraryUris => _unitLibraryUris ??= <int>[]; |
| 1689 | 1691 |
| 1690 /** | 1692 /** |
| (...skipping 6022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7713 "propagatedTypeSlot": propagatedTypeSlot, | 7715 "propagatedTypeSlot": propagatedTypeSlot, |
| 7714 "type": type, | 7716 "type": type, |
| 7715 "visibleLength": visibleLength, | 7717 "visibleLength": visibleLength, |
| 7716 "visibleOffset": visibleOffset, | 7718 "visibleOffset": visibleOffset, |
| 7717 }; | 7719 }; |
| 7718 | 7720 |
| 7719 @override | 7721 @override |
| 7720 String toString() => convert.JSON.encode(toJson()); | 7722 String toString() => convert.JSON.encode(toJson()); |
| 7721 } | 7723 } |
| 7722 | 7724 |
| OLD | NEW |