| 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 void set syntheticReturnType(EntityRefBuilder _value) { | 541 void set syntheticReturnType(EntityRefBuilder _value) { |
| 542 assert(!_finished); | 542 assert(!_finished); |
| 543 _syntheticReturnType = _value; | 543 _syntheticReturnType = _value; |
| 544 } | 544 } |
| 545 | 545 |
| 546 @override | 546 @override |
| 547 List<EntityRefBuilder> get typeArguments => _typeArguments ??= <EntityRefBuild
er>[]; | 547 List<EntityRefBuilder> get typeArguments => _typeArguments ??= <EntityRefBuild
er>[]; |
| 548 | 548 |
| 549 /** | 549 /** |
| 550 * If this is an instantiation of a generic type or generic executable, the | 550 * If this is an instantiation of a generic type or generic executable, the |
| 551 * type arguments used to instantiate it. Trailing type arguments of type | 551 * type arguments used to instantiate it (if any). |
| 552 * `dynamic` are omitted. | |
| 553 */ | 552 */ |
| 554 void set typeArguments(List<EntityRefBuilder> _value) { | 553 void set typeArguments(List<EntityRefBuilder> _value) { |
| 555 assert(!_finished); | 554 assert(!_finished); |
| 556 _typeArguments = _value; | 555 _typeArguments = _value; |
| 557 } | 556 } |
| 558 | 557 |
| 559 EntityRefBuilder({List<int> implicitFunctionTypeIndices, int paramReference, i
nt reference, int slot, List<UnlinkedParamBuilder> syntheticParams, EntityRefBui
lder syntheticReturnType, List<EntityRefBuilder> typeArguments}) | 558 EntityRefBuilder({List<int> implicitFunctionTypeIndices, int paramReference, i
nt reference, int slot, List<UnlinkedParamBuilder> syntheticParams, EntityRefBui
lder syntheticReturnType, List<EntityRefBuilder> typeArguments}) |
| 560 : _implicitFunctionTypeIndices = implicitFunctionTypeIndices, | 559 : _implicitFunctionTypeIndices = implicitFunctionTypeIndices, |
| 561 _paramReference = paramReference, | 560 _paramReference = paramReference, |
| 562 _reference = reference, | 561 _reference = reference, |
| (...skipping 7875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8438 "propagatedTypeSlot": propagatedTypeSlot, | 8437 "propagatedTypeSlot": propagatedTypeSlot, |
| 8439 "type": type, | 8438 "type": type, |
| 8440 "visibleLength": visibleLength, | 8439 "visibleLength": visibleLength, |
| 8441 "visibleOffset": visibleOffset, | 8440 "visibleOffset": visibleOffset, |
| 8442 }; | 8441 }; |
| 8443 | 8442 |
| 8444 @override | 8443 @override |
| 8445 String toString() => convert.JSON.encode(toJson()); | 8444 String toString() => convert.JSON.encode(toJson()); |
| 8446 } | 8445 } |
| 8447 | 8446 |
| OLD | NEW |