| Index: pkg/compiler/lib/src/mirrors/dart2js_library_mirror.dart
|
| diff --git a/pkg/compiler/lib/src/mirrors/dart2js_library_mirror.dart b/pkg/compiler/lib/src/mirrors/dart2js_library_mirror.dart
|
| index 362ec6acf0e6d3f359f36ef0a8a4424168207bcf..46c2a92653dbbcbf97cb2f565430f51d41ddcd27 100644
|
| --- a/pkg/compiler/lib/src/mirrors/dart2js_library_mirror.dart
|
| +++ b/pkg/compiler/lib/src/mirrors/dart2js_library_mirror.dart
|
| @@ -154,6 +154,14 @@ class Dart2JsLibraryDependencyMirror implements LibraryDependencySourceMirror {
|
|
|
| bool get isExport => _node.asExport() != null;
|
|
|
| + bool get isDeferred {
|
| + if (_node is Import) {
|
| + Import import = _node;
|
| + return import.isDeferred;
|
| + }
|
| + return false;
|
| + }
|
| +
|
| List<InstanceMirror> get metadata => const <InstanceMirror>[];
|
| }
|
|
|
|
|