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

Unified Diff: pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect

Issue 2939533002: Apply transformations after comparing to golden files. (Closed)
Patch Set: Created 3 years, 6 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: pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect b/pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect
index 80030fa47f0a70fc8b151e4e476a8b899e863c04..cd73161b5524bb067628985d92f2cc6e6ec74bea 100644
--- a/pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect
@@ -5,36 +5,13 @@ import "dart:core" as core;
import "dart:math" as math;
static method main() → dynamic {
- () → asy::Future<core::num> f = () → asy::Future<core::num> /* originally async */ {
- final asy::Completer<asy::FutureOr<core::num>> :completer = asy::Completer::sync<asy::FutureOr<core::num>>();
- asy::FutureOr<core::num> :return_value;
- dynamic :async_op_then;
- dynamic :async_op_error;
- dynamic :await_jump_var = 0;
- dynamic :await_ctx_var;
- function :async_op([dynamic :result, dynamic :exception, dynamic :stack_trace]) → dynamic yielding
- try {
- #L1:
- {
- if(math::Random::•().{math::Random::nextBool}()) {
- :return_value = asy::Future::value<core::int>(1);
- break #L1;
- }
- else {
- :return_value = 2.0;
- break #L1;
- }
- }
- :completer.complete(:return_value);
- return;
- }
- on dynamic catch(dynamic :exception, dynamic :stack_trace) {
- :completer.completeError(:exception, :stack_trace);
- }
- :async_op_then = asy::_asyncThenWrapperHelper(:async_op);
- :async_op_error = asy::_asyncErrorWrapperHelper(:async_op);
- asy::Future::microtask<dynamic>(:async_op);
- return :completer.future;
+ () → asy::Future<core::num> f = () → asy::Future<core::num> async {
+ if(math::Random::•().{math::Random::nextBool}()) {
+ return asy::Future::value<core::int>(1);
+ }
+ else {
+ return 2.0;
+ }
};
asy::Future<core::num> g = f.call();
asy::Future<core::int> h = f.call();

Powered by Google App Engine
This is Rietveld 408576698