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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartVisitor.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/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;
}

Powered by Google App Engine
This is Rietveld 408576698