| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/element/LibraryElement.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/element/LibraryElement.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/element/LibraryElement.java
|
| index ce1ee4cf7dff33822280a25851bd34c1bcd4c094..dd01d30010755739beacee1effa1a8bb7bb03b52 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/element/LibraryElement.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/element/LibraryElement.java
|
| @@ -106,6 +106,13 @@ public interface LibraryElement extends Element {
|
| public boolean isDartCore();
|
|
|
| /**
|
| + * Return {@code true} if this library is the dart:core library.
|
| + *
|
| + * @return {@code true} if this library is the dart:core library
|
| + */
|
| + public boolean isInSdk();
|
| +
|
| + /**
|
| * Return {@code true} if this library is up to date with respect to the given time stamp. If any
|
| * transitively referenced Source is newer than the time stamp, this method returns false.
|
| *
|
| @@ -113,5 +120,4 @@ public interface LibraryElement extends Element {
|
| * @return {@code true} if this library is up to date with respect to the given time stamp
|
| */
|
| public boolean isUpToDate(long timeStamp);
|
| -
|
| }
|
|
|