| 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 6459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6470 void set kind(idl.ReferenceKind _value) { | 6470 void set kind(idl.ReferenceKind _value) { |
| 6471 assert(!_finished); | 6471 assert(!_finished); |
| 6472 _kind = _value; | 6472 _kind = _value; |
| 6473 } | 6473 } |
| 6474 | 6474 |
| 6475 @override | 6475 @override |
| 6476 List<UnlinkedPublicNameBuilder> get members => _members ??= <UnlinkedPublicNam
eBuilder>[]; | 6476 List<UnlinkedPublicNameBuilder> get members => _members ??= <UnlinkedPublicNam
eBuilder>[]; |
| 6477 | 6477 |
| 6478 /** | 6478 /** |
| 6479 * If this [UnlinkedPublicName] is a class, the list of members which can be | 6479 * If this [UnlinkedPublicName] is a class, the list of members which can be |
| 6480 * referenced from constants or factory redirects - static constant fields, | 6480 * referenced statically - static fields, static methods, and constructors. |
| 6481 * static methods, and constructors. Otherwise empty. | 6481 * Otherwise empty. |
| 6482 * | 6482 * |
| 6483 * Unnamed constructors are not included since they do not constitute a | 6483 * Unnamed constructors are not included since they do not constitute a |
| 6484 * separate name added to any namespace. | 6484 * separate name added to any namespace. |
| 6485 */ | 6485 */ |
| 6486 void set members(List<UnlinkedPublicNameBuilder> _value) { | 6486 void set members(List<UnlinkedPublicNameBuilder> _value) { |
| 6487 assert(!_finished); | 6487 assert(!_finished); |
| 6488 _members = _value; | 6488 _members = _value; |
| 6489 } | 6489 } |
| 6490 | 6490 |
| 6491 @override | 6491 @override |
| (...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8409 "propagatedTypeSlot": propagatedTypeSlot, | 8409 "propagatedTypeSlot": propagatedTypeSlot, |
| 8410 "type": type, | 8410 "type": type, |
| 8411 "visibleLength": visibleLength, | 8411 "visibleLength": visibleLength, |
| 8412 "visibleOffset": visibleOffset, | 8412 "visibleOffset": visibleOffset, |
| 8413 }; | 8413 }; |
| 8414 | 8414 |
| 8415 @override | 8415 @override |
| 8416 String toString() => convert.JSON.encode(toJson()); | 8416 String toString() => convert.JSON.encode(toJson()); |
| 8417 } | 8417 } |
| 8418 | 8418 |
| OLD | NEW |