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

Unified Diff: runtime/lib/convert_patch.dart

Issue 680073002: Fix type-errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/convert_patch.dart
diff --git a/runtime/lib/convert_patch.dart b/runtime/lib/convert_patch.dart
index e50243fe465eac90847e38f117280d05664a6c21..d1bda45d904462fef23ab11dec77941d344c5d22 100644
--- a/runtime/lib/convert_patch.dart
+++ b/runtime/lib/convert_patch.dart
@@ -1371,7 +1371,7 @@ class _JsonStringDecoderSink extends StringConversionSinkBase {
_sink.close();
}
- Utf8ConversionSink asUtf8Sink(bool allowMalformed) {
+ ByteConversionSink asUtf8Sink(bool allowMalformed) {
_parser = null;
return new _JsonUtf8DecoderSink(_reviver, _sink, allowMalformed);
}
@@ -1679,7 +1679,7 @@ double _parseDouble(String source, int start, int end)
* to its corresponding object.
*/
class _JsonUtf8DecoderSink extends ByteConversionSinkBase {
- _ChunkedUtf8Parser _parser;
+ _JsonUtf8Parser _parser;
final Sink<Object> _sink;
_JsonUtf8DecoderSink(reviver, this._sink, bool allowMalformed)
« no previous file with comments | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698