| 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 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1437 List<int> _elementUnits; | 1437 List<int> _elementUnits; |
| 1438 List<int> _elementUnitUris; | 1438 List<int> _elementUnitUris; |
| 1439 List<UnitIndexBuilder> _units; | 1439 List<UnitIndexBuilder> _units; |
| 1440 List<String> _uris; | 1440 List<String> _uris; |
| 1441 | 1441 |
| 1442 @override | 1442 @override |
| 1443 List<idl.IndexSyntheticElementKind> get elementKinds => _elementKinds ??= <idl
.IndexSyntheticElementKind>[]; | 1443 List<idl.IndexSyntheticElementKind> get elementKinds => _elementKinds ??= <idl
.IndexSyntheticElementKind>[]; |
| 1444 | 1444 |
| 1445 /** | 1445 /** |
| 1446 * Each item of this list corresponds to a unique referenced element. It is | 1446 * Each item of this list corresponds to a unique referenced element. It is |
| 1447 * the kind of the element. | 1447 * the kind of the synthetic element. |
| 1448 */ | 1448 */ |
| 1449 void set elementKinds(List<idl.IndexSyntheticElementKind> _value) { | 1449 void set elementKinds(List<idl.IndexSyntheticElementKind> _value) { |
| 1450 assert(!_finished); | 1450 assert(!_finished); |
| 1451 _elementKinds = _value; | 1451 _elementKinds = _value; |
| 1452 } | 1452 } |
| 1453 | 1453 |
| 1454 @override | 1454 @override |
| 1455 List<int> get elementLibraryUris => _elementLibraryUris ??= <int>[]; | 1455 List<int> get elementLibraryUris => _elementLibraryUris ??= <int>[]; |
| 1456 | 1456 |
| 1457 /** | 1457 /** |
| (...skipping 5609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7067 "propagatedTypeSlot": propagatedTypeSlot, | 7067 "propagatedTypeSlot": propagatedTypeSlot, |
| 7068 "type": type, | 7068 "type": type, |
| 7069 "visibleLength": visibleLength, | 7069 "visibleLength": visibleLength, |
| 7070 "visibleOffset": visibleOffset, | 7070 "visibleOffset": visibleOffset, |
| 7071 }; | 7071 }; |
| 7072 | 7072 |
| 7073 @override | 7073 @override |
| 7074 String toString() => convert.JSON.encode(toJson()); | 7074 String toString() => convert.JSON.encode(toJson()); |
| 7075 } | 7075 } |
| 7076 | 7076 |
| OLD | NEW |