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

Unified Diff: tests/language/final_syntax_test.dart

Issue 10909081: Fix tests and update status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/final_syntax_test.dart
diff --git a/tests/language/final_syntax_test.dart b/tests/language/final_syntax_test.dart
index 8bed47069ab4d4d788c2f51f587bda5d2038fe81..78a540e61e94cf142bd24aabb2d3696138b74d5d 100644
--- a/tests/language/final_syntax_test.dart
+++ b/tests/language/final_syntax_test.dart
@@ -39,7 +39,7 @@ final int F3; /// 04: continued
class Point {
final x, y;
kasperl 2012/09/05 11:55:19 I guess these should really be const too.
kasperl 2012/09/05 11:55:57 Strike that. Final should be okay.
- final Point(this.x, this.y);
+ const Point(this.x, this.y);
operator +(int other) => x;
}
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698