Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: sdk/lib/mirrors/mirrors.dart

Issue 921163004: Add LibraryDependencyMirror.isDeferred. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/mirrors/mirrors.dart
diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
index 224e8799638de4577ff37fcb4880296fb352485e..1c30bdcac10aef4611976d0eb120074a73416a3e 100644
--- a/sdk/lib/mirrors/mirrors.dart
+++ b/sdk/lib/mirrors/mirrors.dart
@@ -604,6 +604,10 @@ abstract class LibraryDependencyMirror implements Mirror {
/// Is `true` if this dependency is an export.
bool get isExport;
+ /// Returns true iff this dependency is a deferred import. Otherwise returns
+ /// false.
gbracha 2015/02/14 00:09:00 Spec style differs from other members of this clas
+ bool get isDeferred;
+
/// Returns the library mirror of the library that imports or exports the
/// [targetLibrary].
LibraryMirror get sourceLibrary;

Powered by Google App Engine
This is Rietveld 408576698