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

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

Issue 1038583004: Rationalize coercions (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 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 | « test/dart_codegen/expect/convert/codec.dart ('k') | test/dart_codegen/expect/convert/encoding.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/convert/converter.dart
diff --git a/test/dart_codegen/expect/convert/converter.dart b/test/dart_codegen/expect/convert/converter.dart
index db6db7ff3daf9f48dc74fd50210762095816693a..3fea86e2aa535caf8577628510fc27a1090ca05b 100644
--- a/test/dart_codegen/expect/convert/converter.dart
+++ b/test/dart_codegen/expect/convert/converter.dart
@@ -14,7 +14,7 @@ part of dart.convert;
class _FusedConverter<S, M, T> extends Converter<S, T> {final Converter _first;
final Converter _second;
_FusedConverter(this._first, this._second);
- T convert(S input) => ((__x4) => DEVC$RT.cast(__x4, dynamic, T, "CastGeneral", """line 58, column 25 of dart:convert/converter.dart: """, __x4 is T, false))(_second.convert(_first.convert(input)));
+ T convert(S input) => ((__x4) => DEVC$RT.cast(__x4, dynamic, T, "CompositeCast", """line 58, column 25 of dart:convert/converter.dart: """, __x4 is T, false))(_second.convert(_first.convert(input)));
ChunkedConversionSink startChunkedConversion(Sink sink) {
return _first.startChunkedConversion(_second.startChunkedConversion(sink));
}
« no previous file with comments | « test/dart_codegen/expect/convert/codec.dart ('k') | test/dart_codegen/expect/convert/encoding.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698