Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(698)

Side by Side Diff: pkg/analyzer/lib/src/summary/format.dart

Issue 1954203002: Keep all type arguments in summaries - dynamic or not. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: tweaks Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/format.fbs » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/format.fbs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698