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

Unified Diff: lib/src/js/printer.dart

Issue 1011153002: js: fix core.Object, output order, static const fields (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 | « lib/src/js/nodes.dart ('k') | test/codegen/expect/BenchmarkBase.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/js/printer.dart
diff --git a/lib/src/js/printer.dart b/lib/src/js/printer.dart
index 1ee33043bfec4629b53a9df6dde7343b59537d7f..f38bbe9fef9882e89a5a7dd17422c55c6e8246a6 100644
--- a/lib/src/js/printer.dart
+++ b/lib/src/js/printer.dart
@@ -979,8 +979,8 @@ class Printer implements NodeVisitor {
if (node.heritage != null) {
out(' extends ');
visit(node.heritage);
- spaceOut();
}
+ spaceOut();
out('{');
lineOut();
indentMore();
« no previous file with comments | « lib/src/js/nodes.dart ('k') | test/codegen/expect/BenchmarkBase.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698