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

Unified Diff: test/codegen/expect/language/rewrite_for_update_order_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/rewrite_for_update_order_test.js
diff --git a/test/codegen/expect/language/rewrite_for_update_order_test.js b/test/codegen/expect/language/rewrite_for_update_order_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..16f305962a8f1eda0e2e3c30144f615882616ac8
--- /dev/null
+++ b/test/codegen/expect/language/rewrite_for_update_order_test.js
@@ -0,0 +1,41 @@
+dart_library.library('language/rewrite_for_update_order_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__rewrite_for_update_order_test(exports, dart_sdk, expect) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const expect$ = expect.expect;
+ const rewrite_for_update_order_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ rewrite_for_update_order_test.counter = 0;
+ rewrite_for_update_order_test.global = 0;
+ rewrite_for_update_order_test.test = function() {
+ rewrite_for_update_order_test.counter = dart.notNull(rewrite_for_update_order_test.counter) + 1;
+ return dart.notNull(rewrite_for_update_order_test.counter) <= 2;
+ };
+ dart.fn(rewrite_for_update_order_test.test, VoidTodynamic());
+ rewrite_for_update_order_test.first = function() {
+ rewrite_for_update_order_test.global = dart.notNull(rewrite_for_update_order_test.global) + 1;
+ };
+ dart.fn(rewrite_for_update_order_test.first, VoidTodynamic());
+ rewrite_for_update_order_test.second = function() {
+ rewrite_for_update_order_test.global = dart.notNull(rewrite_for_update_order_test.global) * 2;
+ };
+ dart.fn(rewrite_for_update_order_test.second, VoidTodynamic());
+ rewrite_for_update_order_test.foo = function() {
+ while (dart.test(rewrite_for_update_order_test.test())) {
+ rewrite_for_update_order_test.first();
+ rewrite_for_update_order_test.second();
+ }
+ };
+ dart.fn(rewrite_for_update_order_test.foo, VoidTodynamic());
+ rewrite_for_update_order_test.main = function() {
+ rewrite_for_update_order_test.foo();
+ expect$.Expect.equals(6, rewrite_for_update_order_test.global);
+ };
+ dart.fn(rewrite_for_update_order_test.main, VoidTodynamic());
+ // Exports:
+ exports.rewrite_for_update_order_test = rewrite_for_update_order_test;
+});
« no previous file with comments | « test/codegen/expect/language/rewrite_conditional_test.js ('k') | test/codegen/expect/language/rewrite_if_empty_then_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698