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

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

Issue 8381036: Add a test for non-parameterized factory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 2 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: tests/language/src/InterfaceFactoryMultiTest.dart
===================================================================
--- tests/language/src/InterfaceFactoryMultiTest.dart (revision 680)
+++ tests/language/src/InterfaceFactoryMultiTest.dart (working copy)
@@ -14,7 +14,7 @@
class AImpl implements A {
String _secret;
- AImpl(String one, String two) : _secret = one + two;
+ AImpl(String one, String two) : _secret = one + two;
String GetSecret() { return _secret; }
}
@@ -28,7 +28,7 @@
class BImpl implements B {
String _secret;
- BImpl(String one, String two) : _secret = two + one;
+ BImpl(String one, String two) : _secret = two + one;
String GetSecret() { return _secret; }
}

Powered by Google App Engine
This is Rietveld 408576698