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

Unified Diff: compiler/java/com/google/dart/compiler/ast/ASTVisitor.java

Issue 11776037: Initial support for mixins in dartc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Forgot MixinScope.java Created 7 years, 11 months 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/ASTVisitor.java
diff --git a/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java b/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
index e125b1e2916b6636faf2d19d49627526be6dda73..6223fa0c9192fbe64be4d5efa2637f2e1d0f6d06 100644
--- a/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
+++ b/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
@@ -212,6 +212,10 @@ public class ASTVisitor<R> {
public R visitFunctionTypeAlias(DartFunctionTypeAlias node) {
return visitDeclaration(node);
}
+
+ public R visitClassTypeAlias(DartClassTypeAlias node) {
+ return visitDeclaration(node);
+ }
public R visitIdentifier(DartIdentifier node) {
return visitExpression(node);

Powered by Google App Engine
This is Rietveld 408576698