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

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

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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/byte_conversion.dart ('k') | test/dart_codegen/expect/convert/convert » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/convert/codec.dart
diff --git a/test/dart_codegen/expect/convert/codec.dart b/test/dart_codegen/expect/convert/codec.dart
index 9847e9e373a8981c6dfcecda5c8863dffb27b068..1ce5228d8573e4c03a2ae500b880c0d509a13f21 100644
--- a/test/dart_codegen/expect/convert/codec.dart
+++ b/test/dart_codegen/expect/convert/codec.dart
@@ -11,14 +11,14 @@ part of dart.convert;
}
class _FusedCodec<S, M, T> extends Codec<S, T> {final Codec<S, M> _first;
final Codec<M, T> _second;
- Converter<S, T> get encoder => ((__x2) => DDC$RT.cast(__x2, DDC$RT.type((Converter<S, dynamic> _) {
+ Converter<S, T> get encoder => ((__x2) => DEVC$RT.cast(__x2, DEVC$RT.type((Converter<S, dynamic> _) {
}
-), DDC$RT.type((Converter<S, T> _) {
+), DEVC$RT.type((Converter<S, T> _) {
}
), "CastDynamic", """line 87, column 34 of dart:convert/codec.dart: """, __x2 is Converter<S, T>, false))(_first.encoder.fuse(_second.encoder));
- Converter<T, S> get decoder => ((__x3) => DDC$RT.cast(__x3, DDC$RT.type((Converter<T, dynamic> _) {
+ Converter<T, S> get decoder => ((__x3) => DEVC$RT.cast(__x3, DEVC$RT.type((Converter<T, dynamic> _) {
}
-), DDC$RT.type((Converter<T, S> _) {
+), DEVC$RT.type((Converter<T, S> _) {
}
), "CastDynamic", """line 88, column 34 of dart:convert/codec.dart: """, __x3 is Converter<T, S>, false))(_second.decoder.fuse(_first.decoder));
_FusedCodec(this._first, this._second);
« no previous file with comments | « test/dart_codegen/expect/convert/byte_conversion.dart ('k') | test/dart_codegen/expect/convert/convert » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698