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

Unified Diff: dart/tests/compiler/dart2js_extra/mirror_printer_test.dart

Issue 23447008: Fix type error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/compiler/dart2js_extra/mirror_printer_test.dart
diff --git a/dart/tests/compiler/dart2js_extra/mirror_printer_test.dart b/dart/tests/compiler/dart2js_extra/mirror_printer_test.dart
index 01c8b978ca2cb25650ab2d96b60f5577b23d815e..63c1d12b990e42639f243fe0aefa37056894e2f1 100644
--- a/dart/tests/compiler/dart2js_extra/mirror_printer_test.dart
+++ b/dart/tests/compiler/dart2js_extra/mirror_printer_test.dart
@@ -74,9 +74,8 @@ class MirrorPrinter {
..write(': ')
..write(stringifyInstance(mirror.getField(name)));
});
- return buffer
- ..write(')')
- ..toString();
+ buffer.write(')');
+ return buffer.toString();
}
String stringifyMetadata(InstanceMirror mirror) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698