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

Unified Diff: pkg/analyzer/lib/src/generated/ast.dart

Issue 147903005: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/element.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/ast.dart
diff --git a/pkg/analyzer/lib/src/generated/ast.dart b/pkg/analyzer/lib/src/generated/ast.dart
index 05c9a1d89cb63fef1c1d869eec10ce640605fd04..b4c10ce7a83f9e9105fbee075cf58863254d9851 100644
--- a/pkg/analyzer/lib/src/generated/ast.dart
+++ b/pkg/analyzer/lib/src/generated/ast.dart
@@ -13715,13 +13715,13 @@ class ToSourceVisitor implements ASTVisitor<Object> {
}
Object visitClassTypeAlias(ClassTypeAlias node) {
+ if (node.abstractKeyword != null) {
+ _writer.print("abstract ");
+ }
_writer.print("class ");
visit(node.name);
visit(node.typeParameters);
_writer.print(" = ");
- if (node.abstractKeyword != null) {
- _writer.print("abstract ");
- }
visit(node.superclass);
visit3(" ", node.withClause);
visit3(" ", node.implementsClause);
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698