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

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

Issue 151243003: Fixes for empty class and method bodies. (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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS); 193 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
194 194
195 ContactImpulse(); 195 ContactImpulse();
196 } 196 }
197 <<< 197 <<<
198 class ContactImpulse { 198 class ContactImpulse {
199 List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS); 199 List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
200 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS); 200 List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
201 201
202 ContactImpulse(); 202 ContactImpulse();
203 } 203 }
204 >>> Empty class bodies may be on one line (or more)
205 class A extends B { }
206 <<<
207 class A extends B {}
208 >>>
209 class A extends B {
210
211 }
212 <<<
213 class A extends B {
214
215 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | pkg/analyzer/test/services/data/stmt_tests.data » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698