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

Unified Diff: dart/tests/language/src/Factory3Test.dart

Issue 8958011: One more factory -> default pass. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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
« no previous file with comments | « dart/tests/language/src/Factory2Test.dart ('k') | dart/tests/language/src/FactoryImplementationTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/src/Factory3Test.dart
diff --git a/dart/tests/language/src/Factory3Test.dart b/dart/tests/language/src/Factory3Test.dart
index 3f95fd0604260c0947a5a72e9175b41741188dcc..5acbc1c9ba0de417118e6e6f58e2cb015dc525e7 100644
--- a/dart/tests/language/src/Factory3Test.dart
+++ b/dart/tests/language/src/Factory3Test.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
// VMOptions=--enable_type_checks --enable_asserts
-interface Link<T> extends Iterable<T> factory LinkFactory<T> {
+interface Link<T> extends Iterable<T> default LinkFactory<T> {
Link(T head, [Link<T> tail]);
Link<T> prepend(T element);
}
« no previous file with comments | « dart/tests/language/src/Factory2Test.dart ('k') | dart/tests/language/src/FactoryImplementationTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698