| Index: pkg/analyzer/tool/summary/idl.dart
|
| diff --git a/pkg/analyzer/tool/summary/idl.dart b/pkg/analyzer/tool/summary/idl.dart
|
| index 1506486fa1889bb7d1639328950e4d2592ebf486..8ac44c98f3e4737b30cac83aa64b865ee1c66db1 100644
|
| --- a/pkg/analyzer/tool/summary/idl.dart
|
| +++ b/pkg/analyzer/tool/summary/idl.dart
|
| @@ -180,30 +180,22 @@ class PrelinkedUnit {
|
| @topLevel
|
| class SdkBundle {
|
| /**
|
| - * Information for the libraries units constituting the SDK.
|
| + * The list of URIs of items in [prelinkedLibraries], e.g. `dart:core`.
|
| */
|
| - List<SdkBundleLibrary> libraries;
|
| -}
|
| + List<String> prelinkedLibraryUris;
|
|
|
| -/**
|
| - * Information about a single library in SDK.
|
| - */
|
| -class SdkBundleLibrary {
|
| /**
|
| - * The URI of the library, including `dart:`, e.g. `dart:core`.
|
| + * Pre-linked libraries.
|
| */
|
| - String uri;
|
| + List<PrelinkedLibrary> prelinkedLibraries;
|
|
|
| /**
|
| - * Pre-linked information the library.
|
| + * The list of URIs of items in [unlinkedUnits], e.g. `dart:core/bool.dart`.
|
| */
|
| - PrelinkedLibrary prelinked;
|
| + List<String> unlinkedUnitUris;
|
|
|
| /**
|
| - * Unlinked information for the compilation units constituting the library.
|
| - * The zeroth entry in the list is the defining compilation unit; the
|
| - * remaining entries are the parts, in the order listed in the defining
|
| - * compilation unit's part declarations.
|
| + * Unlinked information for the compilation units constituting the SDK.
|
| */
|
| List<UnlinkedUnit> unlinkedUnits;
|
| }
|
|
|