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

Unified Diff: lib/utf/utf16.dart

Issue 9861011: - Remove type arguments from internal classes and interfaces. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | lib/utf/utf32.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/utf/utf16.dart
===================================================================
--- lib/utf/utf16.dart (revision 5917)
+++ lib/utf/utf16.dart (working copy)
@@ -217,7 +217,7 @@
final Function codeunitsProvider;
final int replacementCodepoint;
- IterableUtf16Decoder._(_ListRangeIterator<int> this.codeunitsProvider(),
+ IterableUtf16Decoder._(_ListRangeIterator this.codeunitsProvider(),
int this.replacementCodepoint);
Utf16CodeUnitDecoder iterator() =>
@@ -230,12 +230,12 @@
* to produce the code unit (0-(2^16)-1). Relies on BOM to determine
* endian-ness, and defaults to BE.
*/
-class Utf16BytesToCodeUnitsDecoder implements _ListRangeIterator<int> {
- final _ListRangeIterator<int> utf16EncodedBytesIterator;
+class Utf16BytesToCodeUnitsDecoder implements _ListRangeIterator {
+ final _ListRangeIterator utf16EncodedBytesIterator;
final int replacementCodepoint;
Utf16BytesToCodeUnitsDecoder._fromListRangeIterator(
- _ListRangeIterator<int> this.utf16EncodedBytesIterator,
+ _ListRangeIterator this.utf16EncodedBytesIterator,
int this.replacementCodepoint);
factory Utf16BytesToCodeUnitsDecoder(List<int> utf16EncodedBytes, [
« no previous file with comments | « no previous file | lib/utf/utf32.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698