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

Unified Diff: test/dart_codegen/expect/convert/utf.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/string_conversion.dart ('k') | test/dart_codegen/expect/core/core » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/convert/utf.dart
diff --git a/test/dart_codegen/expect/convert/utf.dart b/test/dart_codegen/expect/convert/utf.dart
index df26be54a035922366911061bdd00deb20612efe..58298c591a97ea7fb2edc3e603413abe2365b238 100644
--- a/test/dart_codegen/expect/convert/utf.dart
+++ b/test/dart_codegen/expect/convert/utf.dart
@@ -37,13 +37,13 @@ int stringLength = string.length;
if (sink is! ByteConversionSink) {
sink = new ByteConversionSink.from(sink);
}
- return new _Utf8EncoderSink(DDC$RT.cast(sink, DDC$RT.type((Sink<List<int>> _) {
+ return new _Utf8EncoderSink(DEVC$RT.cast(sink, DEVC$RT.type((Sink<List<int>> _) {
}
), ByteConversionSink, "CastGeneral", """line 125, column 33 of dart:convert/utf.dart: """, sink is ByteConversionSink, true));
}
- Stream<List<int>> bind(Stream<String> stream) => ((__x33) => DDC$RT.cast(__x33, DDC$RT.type((DDC$async$.Stream<dynamic> _) {
+ Stream<List<int>> bind(Stream<String> stream) => ((__x33) => DEVC$RT.cast(__x33, DEVC$RT.type((DDC$async$.Stream<dynamic> _) {
}
-), DDC$RT.type((DDC$async$.Stream<List<int>> _) {
+), DEVC$RT.type((DDC$async$.Stream<List<int>> _) {
}
), "CastDynamic", """line 129, column 52 of dart:convert/utf.dart: """, __x33 is DDC$async$.Stream<List<int>>, false))(super.bind(stream));
}
@@ -51,7 +51,7 @@ if (sink is! ByteConversionSink) {
int _bufferIndex = 0;
final List<int> _buffer;
static const _DEFAULT_BYTE_BUFFER_SIZE = 1024;
- _Utf8Encoder() : this.withBufferSize(DDC$RT.cast(_DEFAULT_BYTE_BUFFER_SIZE, dynamic, int, "CastGeneral", """line 143, column 40 of dart:convert/utf.dart: """, _DEFAULT_BYTE_BUFFER_SIZE is int, true));
+ _Utf8Encoder() : this.withBufferSize(DEVC$RT.cast(_DEFAULT_BYTE_BUFFER_SIZE, dynamic, int, "CastGeneral", """line 143, column 40 of dart:convert/utf.dart: """, _DEFAULT_BYTE_BUFFER_SIZE is int, true));
_Utf8Encoder.withBufferSize(int bufferSize) : _buffer = _createBuffer(bufferSize);
static List<int> _createBuffer(int size) => new Uint8List(size);
bool _writeSurrogate(int leadingSurrogate, int nextCodeUnit) {
@@ -170,9 +170,9 @@ stringSink = new StringConversionSink.from(sink);
}
return stringSink.asUtf8Sink(_allowMalformed);
}
- Stream<String> bind(Stream<List<int>> stream) => ((__x34) => DDC$RT.cast(__x34, DDC$RT.type((DDC$async$.Stream<dynamic> _) {
+ Stream<String> bind(Stream<List<int>> stream) => ((__x34) => DEVC$RT.cast(__x34, DEVC$RT.type((DDC$async$.Stream<dynamic> _) {
}
-), DDC$RT.type((DDC$async$.Stream<String> _) {
+), DEVC$RT.type((DDC$async$.Stream<String> _) {
}
), "CastDynamic", """line 361, column 52 of dart:convert/utf.dart: """, __x34 is DDC$async$.Stream<String>, false))(super.bind(stream));
external Converter<List<int>, dynamic> fuse(Converter<String, dynamic> next);
« no previous file with comments | « test/dart_codegen/expect/convert/string_conversion.dart ('k') | test/dart_codegen/expect/core/core » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698