| Index: compiler/java/com/google/dart/compiler/type/TypeAnalyzer.java
|
| diff --git a/compiler/java/com/google/dart/compiler/type/TypeAnalyzer.java b/compiler/java/com/google/dart/compiler/type/TypeAnalyzer.java
|
| index 9aeb892dad701eb4ba59ee5dafa2e171c413fa49..0ef14c2b879fc059c7d9022853a296d1a93741f4 100644
|
| --- a/compiler/java/com/google/dart/compiler/type/TypeAnalyzer.java
|
| +++ b/compiler/java/com/google/dart/compiler/type/TypeAnalyzer.java
|
| @@ -2252,6 +2252,9 @@ public class TypeAnalyzer implements DartCompilationPhase {
|
| if (element != null) {
|
| return element.getType();
|
| }
|
| + if (node.getName().isResolutionAlreadyReportedThatTheMethodCouldNotBeFound()) {
|
| + return dynamicType;
|
| + }
|
| DartNode qualifier = node.getQualifier();
|
| Type receiver = nonVoidTypeOf(qualifier);
|
| // convert into InterfaceType
|
|
|