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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/DartASTValidator.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/javatests/com/google/dart/compiler/parser/DartASTValidator.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/DartASTValidator.java b/compiler/javatests/com/google/dart/compiler/parser/DartASTValidator.java
index cc10c69773e2d059d423ba2cc199e3b067b64a91..6fcac7a40aeed2d2472c77c5de10efdc37e821cc 100755
--- a/compiler/javatests/com/google/dart/compiler/parser/DartASTValidator.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/DartASTValidator.java
@@ -47,7 +47,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;
@@ -629,7 +629,7 @@ public class DartASTValidator implements DartPlainVisitor<Object> {
}
@Override
- public Object visitParameterizedNode(DartParameterizedNode node) {
+ public Object visitParameterizedTypeNode(DartParameterizedTypeNode node) {
validate(node);
node.visitChildren(this);
return null;

Powered by Google App Engine
This is Rietveld 408576698