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

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

Issue 959003003: Typecheck constructor initializers properly (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase 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/line_splitter.dart ('k') | test/dart_codegen/expect/convert/utf.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/convert/string_conversion.dart
diff --git a/test/dart_codegen/expect/convert/string_conversion.dart b/test/dart_codegen/expect/convert/string_conversion.dart
index f8aae5b08ca512616436e3427fdeafe05ae7b801..c220c77368e9c314b95ccd36ccbbf48eaa7d8ddb 100644
--- a/test/dart_codegen/expect/convert/string_conversion.dart
+++ b/test/dart_codegen/expect/convert/string_conversion.dart
@@ -46,14 +46,14 @@ if (_buffer.isNotEmpty) _flush();
Iterator iterator = objects.iterator;
if (!iterator.moveNext()) return; if (separator.isEmpty) {
do {
-_chunkedSink.add(((__x27) => DDC$RT.cast(__x27, dynamic, String, "CastGeneral", """line 147, column 26 of dart:convert/string_conversion.dart: """, __x27 is String, true))(iterator.current.toString()));
+_chunkedSink.add(((__x30) => DDC$RT.cast(__x30, dynamic, String, "CastGeneral", """line 147, column 26 of dart:convert/string_conversion.dart: """, __x30 is String, true))(iterator.current.toString()));
}
while (iterator.moveNext());}
else {
-_chunkedSink.add(((__x28) => DDC$RT.cast(__x28, dynamic, String, "CastGeneral", """line 150, column 24 of dart:convert/string_conversion.dart: """, __x28 is String, true))(iterator.current.toString()));
+_chunkedSink.add(((__x31) => DDC$RT.cast(__x31, dynamic, String, "CastGeneral", """line 150, column 24 of dart:convert/string_conversion.dart: """, __x31 is String, true))(iterator.current.toString()));
while (iterator.moveNext()) {
write(separator);
- _chunkedSink.add(((__x29) => DDC$RT.cast(__x29, dynamic, String, "CastGeneral", """line 153, column 26 of dart:convert/string_conversion.dart: """, __x29 is String, true))(iterator.current.toString()));
+ _chunkedSink.add(((__x32) => DDC$RT.cast(__x32, dynamic, String, "CastGeneral", """line 153, column 26 of dart:convert/string_conversion.dart: """, __x32 is String, true))(iterator.current.toString()));
}
}
}
« no previous file with comments | « test/dart_codegen/expect/convert/line_splitter.dart ('k') | test/dart_codegen/expect/convert/utf.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698