| Index: compiler/java/com/google/dart/compiler/type/AbstractType.java
|
| diff --git a/compiler/java/com/google/dart/compiler/type/AbstractType.java b/compiler/java/com/google/dart/compiler/type/AbstractType.java
|
| index c34f0cb24c05522cc68652abb8d5b6132504b0c8..b837413a0f73cf3a98059b40c167672ba2893187 100644
|
| --- a/compiler/java/com/google/dart/compiler/type/AbstractType.java
|
| +++ b/compiler/java/com/google/dart/compiler/type/AbstractType.java
|
| @@ -8,4 +8,8 @@ package com.google.dart.compiler.type;
|
| * Common superclass for all types.
|
| */
|
| abstract class AbstractType implements Type {
|
| + @Override
|
| + public boolean isInferred() {
|
| + return false;
|
| + }
|
| }
|
|
|