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

Unified Diff: test/dart_codegen/expect/async/future.dart

Issue 1052383003: Disable closure wrapping by default (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: 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/async/future.dart
diff --git a/test/dart_codegen/expect/async/future.dart b/test/dart_codegen/expect/async/future.dart
index 482c98c9df693ae38be808619708454e22de4d4c..dc37673d38c5e19d4e5bcf8d27ba30512b39d8fd 100644
--- a/test/dart_codegen/expect/async/future.dart
+++ b/test/dart_codegen/expect/async/future.dart
@@ -151,7 +151,7 @@ part of dart.async;
var nextIteration;
nextIteration = Zone.current.bindUnaryCallback((bool keepGoing) {
if (keepGoing) {
- new Future.sync(f).then(DEVC$RT.cast(nextIteration, dynamic, __t9, "DynamicCast", """line 361, column 33 of dart:async/future.dart: """, nextIteration is __t9, true), onError: doneSignal._completeError);
+ new Future.sync(f).then(DEVC$RT.cast(nextIteration, dynamic, __t8, "DynamicCast", """line 361, column 33 of dart:async/future.dart: """, nextIteration is __t8, true), onError: doneSignal._completeError);
}
else {
doneSignal._complete(null);
@@ -199,4 +199,4 @@ error = _nonNullError(replacement.error);
result._completeError(error, DEVC$RT.cast(stackTrace, dynamic, StackTrace, "DynamicCast", """line 724, column 32 of dart:async/future.dart: """, stackTrace is StackTrace, true));
}
Object _nonNullError(Object error) => (error != null) ? error : new NullThrownError();
- typedef dynamic __t9(dynamic __u10);
+ typedef dynamic __t8(dynamic __u9);

Powered by Google App Engine
This is Rietveld 408576698