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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/dart_backend/emitter.dart

Issue 448943004: Refactor and simplify the dart2dart renamer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix minifying name generation Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of dart_backend;
6
7 void emitCode(
8 Unparser unparser,
9 Map<LibraryElement, String> imports,
10 Iterable<Node> topLevelNodes,
11 Map<ClassNode, Iterable<Node>> classMembers) {
12 imports.forEach((libraryElement, prefix) {
13 unparser.unparseImportTag('${libraryElement.canonicalUri}', prefix);
14 });
15
16 for (final node in topLevelNodes) {
17 if (node is ClassNode) {
18 // TODO(smok): Filter out default constructors here.
19 unparser.unparseClassWithBody(node, classMembers[node]);
20 } else {
21 unparser.unparse(node);
22 }
23 unparser.newline();
24 }
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698