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

Unified Diff: lib/compiler/implementation/dart_backend/utils.dart

Issue 10990108: Handle modifiers (abstract) on class nodes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: TODO added Created 8 years, 2 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 | lib/compiler/implementation/scanner/class_element_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/dart_backend/utils.dart
diff --git a/lib/compiler/implementation/dart_backend/utils.dart b/lib/compiler/implementation/dart_backend/utils.dart
index 2086a544de31578a86b3249e62f6fa02fc7d001c..0563979d5dc64d256b3be14b2cb8c106c4732f8a 100644
--- a/lib/compiler/implementation/dart_backend/utils.dart
+++ b/lib/compiler/implementation/dart_backend/utils.dart
@@ -44,7 +44,7 @@ class CloningVisitor implements Visitor<Node> {
node.onKeyword, node.catchKeyword);
visitClassNode(ClassNode node) => new ClassNode(
- visit(node.name), visit(node.typeParameters),
+ visit(node.modifiers), visit(node.name), visit(node.typeParameters),
visit(node.superclass), visit(node.interfaces), visit(node.defaultClause),
node.beginToken, node.extendsKeyword, visit(node.body), node.endToken);
« no previous file with comments | « no previous file | lib/compiler/implementation/scanner/class_element_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698