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

Unified Diff: sdk/lib/convert/converter.dart

Issue 22979003: add a const ctor to Converter (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated tests Created 7 years, 4 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/lib/convert/codec1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/converter.dart
diff --git a/sdk/lib/convert/converter.dart b/sdk/lib/convert/converter.dart
index 5563d7c35c6565130e4c3b13ea7c440f2fe16b66..2bda6fe2062978e17e118e1791bd1b18cad60498 100644
--- a/sdk/lib/convert/converter.dart
+++ b/sdk/lib/convert/converter.dart
@@ -11,6 +11,8 @@ part of dart.convert;
*
*/
abstract class Converter<S, T> implements StreamTransformer {
+ const Converter();
+
/**
* Converts [input] and returns the result of the conversion.
*/
« no previous file with comments | « no previous file | tests/lib/convert/codec1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698