Index: compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java |
diff --git a/compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java b/compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java |
index c0cd8e4c4f51519dd6e0675f19181e8747ff341e..8ce6545c1b535a8067cc6f7701c3c81ba437457d 100644 |
--- a/compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java |
+++ b/compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java |
@@ -50,7 +50,7 @@ import com.google.dart.compiler.ast.DartNewExpression; |
import com.google.dart.compiler.ast.DartNode; |
import com.google.dart.compiler.ast.DartNullLiteral; |
import com.google.dart.compiler.ast.DartParameter; |
-import com.google.dart.compiler.ast.DartParameterizedNode; |
+import com.google.dart.compiler.ast.DartParameterizedTypeNode; |
import com.google.dart.compiler.ast.DartParenthesizedExpression; |
import com.google.dart.compiler.ast.DartPlainVisitor; |
import com.google.dart.compiler.ast.DartPropertyAccess; |
@@ -931,7 +931,7 @@ public class TypeHeuristicImplementation implements TypeHeuristic { |
} |
@Override |
- public Type visitParameterizedNode(DartParameterizedNode node) { |
+ public Type visitParameterizedTypeNode(DartParameterizedTypeNode node) { |
return node.getExpression().accept(this); |
} |