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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java

Issue 23481015: Fix for issue 12726 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java
index 037dc5a0e19795166306f99ccf904ad7acc58ddf..de7720f838ea174fd082a363aae44e9a986468e3 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/element/handle/LibraryElementHandle.java
@@ -99,6 +99,11 @@ public class LibraryElementHandle extends ElementHandle implements LibraryElemen
}
@Override
+ public boolean isInSdk() {
+ return getActualElement().isInSdk();
+ }
+
+ @Override
public boolean isUpToDate(long timeStamp) {
return getActualElement().isUpToDate(timeStamp);
}

Powered by Google App Engine
This is Rietveld 408576698