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

Unified Diff: test/codegen/expect/language/await_not_started_immediately_test.js

Issue 2128353002: Check in codegen test expectations. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 5 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/codegen/expect/language/await_not_started_immediately_test.js
diff --git a/test/codegen/expect/language/await_not_started_immediately_test.js b/test/codegen/expect/language/await_not_started_immediately_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..8df05fe74717af1129cfb1414c8b04f0afa69d3a
--- /dev/null
+++ b/test/codegen/expect/language/await_not_started_immediately_test.js
@@ -0,0 +1,33 @@
+dart_library.library('language/await_not_started_immediately_test', null, /* Imports */[
+ 'dart_sdk',
+ 'async_helper',
+ 'expect'
+], function load__await_not_started_immediately_test(exports, dart_sdk, async_helper, expect) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const async_helper$ = async_helper.async_helper;
+ const expect$ = expect.expect;
+ const await_not_started_immediately_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ let dynamicTovoid = () => (dynamicTovoid = dart.constFn(dart.definiteFunctionType(dart.void, [dart.dynamic])))();
+ let VoidTovoid = () => (VoidTovoid = dart.constFn(dart.definiteFunctionType(dart.void, [])))();
+ await_not_started_immediately_test.x = 0;
+ await_not_started_immediately_test.foo = function() {
+ return dart.async(function*() {
+ await_not_started_immediately_test.x = dart.notNull(await_not_started_immediately_test.x) + 1;
+ yield 1;
+ await_not_started_immediately_test.x = dart.notNull(await_not_started_immediately_test.x) + 1;
+ }, dart.dynamic);
+ };
+ dart.fn(await_not_started_immediately_test.foo, VoidTodynamic());
+ await_not_started_immediately_test.main = function() {
+ async_helper$.asyncStart();
+ dart.dsend(dart.dsend(await_not_started_immediately_test.foo(), 'then', dart.fn(_ => expect$.Expect.equals(2, await_not_started_immediately_test.x), dynamicTovoid())), 'whenComplete', async_helper$.asyncEnd);
+ expect$.Expect.equals(0, await_not_started_immediately_test.x);
+ };
+ dart.fn(await_not_started_immediately_test.main, VoidTovoid());
+ // Exports:
+ exports.await_not_started_immediately_test = await_not_started_immediately_test;
+});
« no previous file with comments | « test/codegen/expect/language/await_nonfuture_test.js ('k') | test/codegen/expect/language/await_postfix_expr_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698