Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: compiler/java/com/google/dart/compiler/backend/common/TypeHeuristicImplementation.java

Issue 8948001: Updates dartc to recognize 'default' keyword on interface and updated factory method syntax (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Feedback from mmendez Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698