| OLD | NEW |
| (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 } | |
| OLD | NEW |