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

Side by Side Diff: packages/dart_style/test/splitting/expressions.stmt

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years 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
OLDNEW
1 40 columns | 1 40 columns |
2 >>> space-separated adjacent strings are not split if they fit 2 >>> space-separated adjacent strings are not split if they fit
3 var name = new Symbol("the first string" "the second"); 3 var name = new Symbol("the first string" "the second");
4 <<< 4 <<<
5 var name = new Symbol( 5 var name = new Symbol(
6 "the first string" "the second"); 6 "the first string" "the second");
7 >>> space-separated adjacent strings are split if they don't fit 7 >>> space-separated adjacent strings are split if they don't fit
8 var name = new Symbol("the first very long string" "the second very longstring") ; 8 var name = new Symbol("the first very long string" "the second very longstring") ;
9 <<< 9 <<<
10 var name = new Symbol( 10 var name = new Symbol(
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 verylongIdentifier.property as LongTypeName; 126 verylongIdentifier.property as LongTypeName;
127 <<< 127 <<<
128 verylongIdentifier.property 128 verylongIdentifier.property
129 as LongTypeName; 129 as LongTypeName;
130 >>> null coalescing operator 130 >>> null coalescing operator
131 identifier&&identifier&&identifier&&identifier; 131 identifier&&identifier&&identifier&&identifier;
132 <<< 132 <<<
133 identifier && 133 identifier &&
134 identifier && 134 identifier &&
135 identifier && 135 identifier &&
136 identifier; 136 identifier;
137 >>> "." in named constructor
138 new VeryLongClassName.veryLongNamedConstructor();
139 <<<
140 new VeryLongClassName
141 .veryLongNamedConstructor();
OLDNEW
« no previous file with comments | « packages/dart_style/test/splitting/._strings.stmt ('k') | packages/dart_style/test/splitting/invocations.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698