| Index: utils/archive/archive.dart
|
| diff --git a/utils/archive/archive.dart b/utils/archive/archive.dart
|
| index 99ed17010dc090b892c3ba438df5be1059df77e5..73a9fbf316909707f51d2d2a0a02ece3d28ef385 100644
|
| --- a/utils/archive/archive.dart
|
| +++ b/utils/archive/archive.dart
|
| @@ -8,6 +8,7 @@
|
| */
|
| #library("archive");
|
|
|
| +#import("entry.dart", prefix: "entry");
|
| #import("reader.dart", prefix: "reader");
|
|
|
| // TODO(nweiz): Remove this when 3071 is fixed.
|
| @@ -23,3 +24,13 @@ interface ArchiveException {
|
| // TODO(nweiz): Remove this when 3071 is fixed.
|
| /** See [reader.ArchiveReader]. */
|
| class ArchiveReader extends reader.ArchiveReader {}
|
| +
|
| +// TODO(nweiz): Remove this when 3071 is fixed.
|
| +/** See [entry.ArchiveEntry]. */
|
| +class ArchiveEntry extends entry.ArchiveEntry {
|
| + ArchiveEntry.internal(List properties, int archiveId)
|
| + : super.internal(properties, archiveId);
|
| +
|
| + /** Create a new [ArchiveEntry] with default values for all of its fields. */
|
| + static Future<ArchiveEntry> create() => entry.ArchiveEntry.create();
|
| +}
|
|
|