| Index: pkg/analyzer/lib/src/summary/idl.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
|
| index 6ec0dedb8bc4b1a0d1b6eac4a0a34f29209bc063..f2a42e480905d801fa9f1cfe5bc0acf63b52a986 100644
|
| --- a/pkg/analyzer/lib/src/summary/idl.dart
|
| +++ b/pkg/analyzer/lib/src/summary/idl.dart
|
| @@ -1344,16 +1344,19 @@ abstract class UnlinkedPart extends base.SummaryClass {
|
| */
|
| abstract class UnlinkedPublicName extends base.SummaryClass {
|
| /**
|
| - * If this [UnlinkedPublicName] is a class, the list of members which can be
|
| - * referenced from constants - static constant fields, static methods, and
|
| - * constructors. Otherwise empty.
|
| + * The kind of object referred to by the name.
|
| */
|
| - List<UnlinkedPublicName> get constMembers;
|
| + ReferenceKind get kind;
|
|
|
| /**
|
| - * The kind of object referred to by the name.
|
| + * If this [UnlinkedPublicName] is a class, the list of members which can be
|
| + * referenced from constants or factory redirects - static constant fields,
|
| + * static methods, and constructors. Otherwise empty.
|
| + *
|
| + * Unnamed constructors are not included since they do not constitute a
|
| + * separate name added to any namespace.
|
| */
|
| - ReferenceKind get kind;
|
| + List<UnlinkedPublicName> get members;
|
|
|
| /**
|
| * The name itself.
|
|
|