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

Unified Diff: test/regression/44.stmt

Issue 846133002: Put conditional operators on the left. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Update version. Created 5 years, 11 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/122.unit ('k') | test/regression/45.stmt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/regression/44.stmt
diff --git a/test/regression/44.stmt b/test/regression/44.stmt
index ad582a9d9d463df2c7c4372a60ce5fdbeaa4736a..9532288c3ff53aca94b8d1fe0f4a55d7f8c743e3 100644
--- a/test/regression/44.stmt
+++ b/test/regression/44.stmt
@@ -55,7 +55,7 @@ void main() {
}
<<<
void main() {
- var xxxxxxxYyyyyyyy = aaaabbb ?
- CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm1(arg00000000000) :
- CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm(arg1111111111111);
+ var xxxxxxxYyyyyyyy = aaaabbb
+ ? CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm1(arg00000000000)
+ : CCCCCCCCCCCC.mmmmmmmmmmmmmmmmmm(arg1111111111111);
}
« no previous file with comments | « test/regression/122.unit ('k') | test/regression/45.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698