| 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 2603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2614 assert(!_finished); | 2614 assert(!_finished); |
| 2615 _parameters = _value; | 2615 _parameters = _value; |
| 2616 } | 2616 } |
| 2617 | 2617 |
| 2618 @override | 2618 @override |
| 2619 EntityRefBuilder get redirectedConstructor => _redirectedConstructor; | 2619 EntityRefBuilder get redirectedConstructor => _redirectedConstructor; |
| 2620 | 2620 |
| 2621 /** | 2621 /** |
| 2622 * If [isRedirectedConstructor] and [isFactory] are both `true`, the | 2622 * If [isRedirectedConstructor] and [isFactory] are both `true`, the |
| 2623 * constructor to which this constructor redirects; otherwise empty. | 2623 * constructor to which this constructor redirects; otherwise empty. |
| 2624 * |
| 2625 * Note: type arguments are ignored. |
| 2624 */ | 2626 */ |
| 2625 void set redirectedConstructor(EntityRefBuilder _value) { | 2627 void set redirectedConstructor(EntityRefBuilder _value) { |
| 2626 assert(!_finished); | 2628 assert(!_finished); |
| 2627 _redirectedConstructor = _value; | 2629 _redirectedConstructor = _value; |
| 2628 } | 2630 } |
| 2629 | 2631 |
| 2630 @override | 2632 @override |
| 2631 String get redirectedConstructorName => _redirectedConstructorName ??= ''; | 2633 String get redirectedConstructorName => _redirectedConstructorName ??= ''; |
| 2632 | 2634 |
| 2633 /** | 2635 /** |
| (...skipping 2799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5433 "isConst": isConst, | 5435 "isConst": isConst, |
| 5434 "isFinal": isFinal, | 5436 "isFinal": isFinal, |
| 5435 "isStatic": isStatic, | 5437 "isStatic": isStatic, |
| 5436 "name": name, | 5438 "name": name, |
| 5437 "nameOffset": nameOffset, | 5439 "nameOffset": nameOffset, |
| 5438 "propagatedTypeSlot": propagatedTypeSlot, | 5440 "propagatedTypeSlot": propagatedTypeSlot, |
| 5439 "type": type, | 5441 "type": type, |
| 5440 }; | 5442 }; |
| 5441 } | 5443 } |
| 5442 | 5444 |
| OLD | NEW |