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

Unified Diff: test/regression/0000/0050.stmt

Issue 1252323003: Allow arguments before and after block-formatted functions. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Update pubspec and changelog. Created 5 years, 5 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 | « test/regression/0000/0000.stmt ('k') | test/regression/0000/0057.stmt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/regression/0000/0050.stmt
diff --git a/test/regression/0000/0050.stmt b/test/regression/0000/0050.stmt
index d245e97a362550d92e9731febb4e9691d09a5265..4bb14492282564889f883b9640740e2a164b974f 100644
--- a/test/regression/0000/0050.stmt
+++ b/test/regression/0000/0050.stmt
@@ -9,10 +9,8 @@
onDone: () { print('file is now closed'); },
onError: (e) { print(e.toString()); });
<<<
- inputStream
- .transform(UTF8.decoder)
- .transform(new LineSplitter())
- .listen((String line) {
+ inputStream.transform(UTF8.decoder).transform(new LineSplitter()).listen(
+ (String line) {
print('Got ${line.length} characters from stream');
}, onDone: () {
print('file is now closed');
« no previous file with comments | « test/regression/0000/0000.stmt ('k') | test/regression/0000/0057.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698