| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/Type.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/Type.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/Type.java
|
| index 7263b0df1198147d8369b60a8e6a070f1db520a9..cf03aeee192e8ec29756ca1c350064254718f039 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/Type.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/Type.java
|
| @@ -67,6 +67,13 @@ public interface Type {
|
| public boolean isAssignableTo(Type type);
|
|
|
| /**
|
| + * Return {@code true} if this type represents the bottom type.
|
| + *
|
| + * @return {@code true} if this type represents the bottom type
|
| + */
|
| + public boolean isBottom();
|
| +
|
| + /**
|
| * Return {@code true} if this type represents the type 'Function' defined in the dart:core
|
| * library.
|
| *
|
|
|