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

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

Issue 11262032: Add 'part of' in dart2js code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of dart_backend;
6
5 String emitCode( 7 String emitCode(
6 Unparser unparser, 8 Unparser unparser,
7 Map<LibraryElement, String> imports, 9 Map<LibraryElement, String> imports,
8 Collection<Node> topLevelNodes, 10 Collection<Node> topLevelNodes,
9 Map<ClassNode, Collection<Node>> classMembers) { 11 Map<ClassNode, Collection<Node>> classMembers) {
10 imports.forEach((libraryElement, prefix) { 12 imports.forEach((libraryElement, prefix) {
11 unparser.unparseImportTag('${libraryElement.uri}', prefix); 13 unparser.unparseImportTag('${libraryElement.uri}', prefix);
12 }); 14 });
13 15
14 for (final node in topLevelNodes) { 16 for (final node in topLevelNodes) {
15 if (node is ClassNode) { 17 if (node is ClassNode) {
16 // TODO(smok): Filter out default constructors here. 18 // TODO(smok): Filter out default constructors here.
17 unparser.unparseClassWithBody(node, classMembers[node]); 19 unparser.unparseClassWithBody(node, classMembers[node]);
18 } else { 20 } else {
19 unparser.unparse(node); 21 unparser.unparse(node);
20 } 22 }
21 } 23 }
22 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698