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

Unified Diff: tests/language/default_implementation_test.dart

Issue 11434089: Update or delete language tests using obsolete interfaces or default factory (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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: tests/language/default_implementation_test.dart
===================================================================
--- tests/language/default_implementation_test.dart (revision 15648)
+++ tests/language/default_implementation_test.dart (working copy)
@@ -5,8 +5,8 @@
// @static-clean
-interface Point default PointImplementation {
- Point(int x, int y);
+abstract class Point {
+ factory Point(int x, int y) = PointImplementation;
final int x;
final int y;
« no previous file with comments | « tests/language/default_implementation2_test.dart ('k') | tests/language/default_interface1_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698