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

Unified Diff: test/dart_codegen/expect/convert/ascii.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 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: test/dart_codegen/expect/convert/ascii.dart
diff --git a/test/dart_codegen/expect/convert/ascii.dart b/test/dart_codegen/expect/convert/ascii.dart
index 0de37e85a27f1490c8dcd13ab4436bd79163398b..7358b46d79063aaa8c73c1e6ec2e72953cb2b5d2 100644
--- a/test/dart_codegen/expect/convert/ascii.dart
+++ b/test/dart_codegen/expect/convert/ascii.dart
@@ -49,11 +49,7 @@ if (sink is! ByteConversionSink) {
}
), ByteConversionSink, "ImplicitCast", """line 109, column 55 of dart:convert/ascii.dart: """, sink is ByteConversionSink, true));
}
- Stream<List<int>> bind(Stream<String> stream) => ((__x0) => DEVC$RT.cast(__x0, DEVC$RT.type((DDC$async$.Stream<dynamic> _) {
-}
-), DEVC$RT.type((DDC$async$.Stream<List<int>> _) {
-}
-), "CompositeCast", """line 113, column 52 of dart:convert/ascii.dart: """, __x0 is DDC$async$.Stream<List<int>>, false))(super.bind(stream));
+ Stream<List<int>> bind(Stream<String> stream) => super.bind(stream);
}
class AsciiEncoder extends _UnicodeSubsetEncoder {const AsciiEncoder() : super(_ASCII_MASK);
}
@@ -106,11 +102,7 @@ int value = bytes[i];
return buffer.toString();
}
ByteConversionSink startChunkedConversion(Sink<String> sink);
- Stream<String> bind(Stream<List<int>> stream) => ((__x1) => DEVC$RT.cast(__x1, DEVC$RT.type((DDC$async$.Stream<dynamic> _) {
-}
-), DEVC$RT.type((DDC$async$.Stream<String> _) {
-}
-), "CompositeCast", """line 221, column 52 of dart:convert/ascii.dart: """, __x1 is DDC$async$.Stream<String>, false))(super.bind(stream));
+ Stream<String> bind(Stream<List<int>> stream) => super.bind(stream);
}
class AsciiDecoder extends _UnicodeSubsetDecoder {const AsciiDecoder({
bool allowInvalid : false}

Powered by Google App Engine
This is Rietveld 408576698