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

Unified 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, 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
Index: pkg/analyzer/test/services/data/cu_tests.data
===================================================================
--- pkg/analyzer/test/services/data/cu_tests.data (revision 32131)
+++ pkg/analyzer/test/services/data/cu_tests.data (working copy)
@@ -186,4 +186,18 @@
}
void setX(x) {
+}
+>>> dartbug.com/16405
+class ContactImpulse {
+ List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
+ List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
+
+ ContactImpulse();
+}
+<<<
+class ContactImpulse {
+ List<double> normalImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
+ List<double> tangentImpulses = new List<double>(Settings.MAX_MANIFOLD_POINTS);
+
+ ContactImpulse();
}
« 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