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

Unified Diff: dart/sdk/lib/math/point.dart

Issue 66253002: Version 0.8.10.9 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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: dart/sdk/lib/math/point.dart
===================================================================
--- dart/sdk/lib/math/point.dart (revision 30098)
+++ dart/sdk/lib/math/point.dart (working copy)
@@ -10,7 +10,7 @@
final T x;
final T y;
- const Point([T x = 0, T y = 0]): this.x = x, this.y = y;
+ const Point(T x, T y): this.x = x, this.y = y;
String toString() => 'Point($x, $y)';
« no previous file with comments | « dart/sdk/lib/html/dartium/html_dartium.dart ('k') | dart/sdk/lib/typed_data/dart2js/typed_data_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698