Index: compiler/java/com/google/dart/compiler/backend/js/GenerateJavascriptAST.java |
diff --git a/compiler/java/com/google/dart/compiler/backend/js/GenerateJavascriptAST.java b/compiler/java/com/google/dart/compiler/backend/js/GenerateJavascriptAST.java |
index 7eb025528231973905036e7e53a8c293b229a013..d30a229cbd68d4b4ef9852aeda88cb97bb493adb 100644 |
--- a/compiler/java/com/google/dart/compiler/backend/js/GenerateJavascriptAST.java |
+++ b/compiler/java/com/google/dart/compiler/backend/js/GenerateJavascriptAST.java |
@@ -55,7 +55,7 @@ import com.google.dart.compiler.ast.DartNode; |
import com.google.dart.compiler.ast.DartNodeTraverser; |
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; |
@@ -3856,7 +3856,7 @@ public class GenerateJavascriptAST { |
} |
@Override |
- public JsNode visitParameterizedNode(DartParameterizedNode node) { |
+ public JsNode visitParameterizedTypeNode(DartParameterizedTypeNode node) { |
return node.getExpression().accept(this); |
} |