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

Unified Diff: compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.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/viz/BaseASTWriter.java
diff --git a/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java b/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
index fffddd6f93b4b705cd93e3852268c6a251e35cf6..1079dce1df9f15a688539fd9fc6598e65b0f3022 100644
--- a/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
+++ b/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
@@ -51,7 +51,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.DartPropertyAccess;
import com.google.dart.compiler.ast.DartRedirectConstructorInvocation;
@@ -452,7 +452,7 @@ public abstract class BaseASTWriter {
}
@Override
- public Object visitParameterizedNode(DartParameterizedNode node) {
+ public Object visitParameterizedTypeNode(DartParameterizedTypeNode node) {
write("DartParameterizedNode", node);
visitChildren(node);
return null;

Powered by Google App Engine
This is Rietveld 408576698