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

Unified Diff: test/dart_codegen/expect/collection/set.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/collection/queue.dart ('k') | test/dart_codegen/expect/collection/splay_tree.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/collection/set.dart
diff --git a/test/dart_codegen/expect/collection/set.dart b/test/dart_codegen/expect/collection/set.dart
index 2c3084101d69ba8a36ad5fd1ef9990a05d6224fe..f2aea206962ee2335c4b26c31a3f6bf5202ea53c 100644
--- a/test/dart_codegen/expect/collection/set.dart
+++ b/test/dart_codegen/expect/collection/set.dart
@@ -179,7 +179,7 @@ part of dart.collection;
E lastWhere(bool test(E value), {
E orElse()}
) {
- E result = ((__x43) => DDC$RT.cast(__x43, Null, E, "CastLiteral", """line 244, column 16 of dart:collection/set.dart: """, __x43 is E, false))(null);
+ E result = ((__x49) => DDC$RT.cast(__x49, Null, E, "CastLiteral", """line 244, column 16 of dart:collection/set.dart: """, __x49 is E, false))(null);
bool foundMatching = false;
for (E element in this) {
if (test(element)) {
@@ -192,7 +192,7 @@ part of dart.collection;
throw IterableElementError.noElement();
}
E singleWhere(bool test(E value)) {
- E result = ((__x44) => DDC$RT.cast(__x44, Null, E, "CastLiteral", """line 258, column 16 of dart:collection/set.dart: """, __x44 is E, false))(null);
+ E result = ((__x50) => DDC$RT.cast(__x50, Null, E, "CastLiteral", """line 258, column 16 of dart:collection/set.dart: """, __x50 is E, false))(null);
bool foundMatching = false;
for (E element in this) {
if (test(element)) {
« no previous file with comments | « test/dart_codegen/expect/collection/queue.dart ('k') | test/dart_codegen/expect/collection/splay_tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698