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

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

Issue 1944023002: Include all static class members in UnlinkedPublicName.members. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix incorrect upload (previously included changes from CL 1944773002) 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 6459 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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