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

Unified Diff: test/dart_codegen/expect/collection/iterator.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
Index: test/dart_codegen/expect/collection/iterator.dart
diff --git a/test/dart_codegen/expect/collection/iterator.dart b/test/dart_codegen/expect/collection/iterator.dart
index 17606cabda2160ddd3d6e3df933f639d98b65b1a..973bdcb5747c40a3ba7039cf79136ff2d1479332 100644
--- a/test/dart_codegen/expect/collection/iterator.dart
+++ b/test/dart_codegen/expect/collection/iterator.dart
@@ -11,7 +11,7 @@ part of dart.collection;
}
E next() {
if (!hasNext) throw new StateError("No more elements");
- assert (_state == _HAS_NEXT_AND_NEXT_IN_CURRENT); E result = DEVC$RT.cast(_iterator.current, dynamic, E, "CastGeneral", """line 33, column 16 of dart:collection/iterator.dart: """, _iterator.current is E, false);
+ assert (_state == _HAS_NEXT_AND_NEXT_IN_CURRENT); E result = DEVC$RT.cast(_iterator.current, dynamic, E, "CompositeCast", """line 33, column 16 of dart:collection/iterator.dart: """, _iterator.current is E, false);
_move();
return result;
}
« no previous file with comments | « test/dart_codegen/expect/collection/iterable.dart ('k') | test/dart_codegen/expect/collection/linked_hash_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698