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

Side by Side Diff: pkg/analyzer/test/services/data/cu_tests.data

Issue 149913002: Max line length test fix (dartbug.com/16405). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 >>> 1 >>>
2 class 2 class
3 A 3 A
4 { 4 {
5 } 5 }
6 <<< 6 <<<
7 class A { 7 class A {
8 } 8 }
9 >>> dartbug.com/15876 9 >>> dartbug.com/15876
10 // fisk 10 // fisk
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 179
180 void setX(x) { 180 void setX(x) {
181 } 181 }
182 <<< 182 <<<
183 Object get _globalState => null; 183 Object get _globalState => null;
184 184
185 set _globalState(Object val) { 185 set _globalState(Object val) {
186 } 186 }
187 187
188 void setX(x) { 188 void setX(x) {
189 }
190 >>> dartbug.com/16405
191 class ContactImpulse {
192 List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
193 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
194
195 ContactImpulse();
196 }
197 <<<
198 class ContactImpulse {
199 List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
200 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
201
202 ContactImpulse();
189 } 203 }
OLDNEW
« pkg/analyzer/lib/src/services/writer.dart ('K') | « pkg/analyzer/lib/src/services/writer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698