| Index: compiler/java/com/google/dart/compiler/ast/DartVisitor.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartVisitor.java b/compiler/java/com/google/dart/compiler/ast/DartVisitor.java
|
| index 97b7157b8f288a601a115b508b7cf915c197b70d..79b1fdd39d3bf91164daededc4c84c45711e86f3 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartVisitor.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartVisitor.java
|
| @@ -241,7 +241,7 @@ public class DartVisitor {
|
| public void endVisit(DartParameter x, DartContext ctx) {
|
| }
|
|
|
| - public void endVisit(DartParameterizedNode x, DartContext ctx) {
|
| + public void endVisit(DartParameterizedTypeNode x, DartContext ctx) {
|
| }
|
|
|
| public void endVisit(DartParenthesizedExpression x, DartContext ctx) {
|
| @@ -492,7 +492,7 @@ public class DartVisitor {
|
| return true;
|
| }
|
|
|
| - public boolean visit(DartParameterizedNode x, DartContext ctx) {
|
| + public boolean visit(DartParameterizedTypeNode x, DartContext ctx) {
|
| return true;
|
| }
|
|
|
|
|