| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index cf4e21525616fef7efa12a76c5696ab39252ac36..20e2e7b6d0153e7405fe4a2dcabcb474383fc9bc 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -904,7 +904,19 @@ abstract class Compiler implements LibraryLoaderListener {
|
| world.addToWorkList(loadLibrary);
|
| }
|
| }
|
| + if (serialization.supportSerialization) {
|
| + for (MetadataAnnotation metadata in import.metadata) {
|
| + metadata.ensureResolved(resolution);
|
| + }
|
| + }
|
| });
|
| + if (serialization.supportSerialization) {
|
| + library.exports.forEach((ExportElement export) {
|
| + for (MetadataAnnotation metadata in export.metadata) {
|
| + metadata.ensureResolved(resolution);
|
| + }
|
| + });
|
| + }
|
| }
|
|
|
| void fullyEnqueueTopLevelElement(Element element, Enqueuer world) {
|
|
|