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

Unified Diff: test/codegen/expect/language/truncdiv_uint32_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
« no previous file with comments | « test/codegen/expect/language/truncdiv_test.js ('k') | test/codegen/expect/language/try_catch2_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/language/truncdiv_uint32_test.js
diff --git a/test/codegen/expect/language/truncdiv_uint32_test.js b/test/codegen/expect/language/truncdiv_uint32_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..d0184e2b018fa0751f7da007a4cf25b4edd9cbba
--- /dev/null
+++ b/test/codegen/expect/language/truncdiv_uint32_test.js
@@ -0,0 +1,24 @@
+dart_library.library('language/truncdiv_uint32_test', null, /* Imports */[
+ 'dart_sdk'
+], function load__truncdiv_uint32_test(exports, dart_sdk) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const _interceptors = dart_sdk._interceptors;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const truncdiv_uint32_test = Object.create(null);
+ let JSArrayOfint = () => (JSArrayOfint = dart.constFn(_interceptors.JSArray$(core.int)))();
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ dart.defineLazy(truncdiv_uint32_test, {
+ get a() {
+ return JSArrayOfint().of([4294967295]);
+ },
+ set a(_) {}
+ });
+ truncdiv_uint32_test.main = function() {
+ if ((dart.notNull(truncdiv_uint32_test.a[dartx.get](0)) / 1)[dartx.truncate]() != 4294967295) dart.throw('Test failed');
+ };
+ dart.fn(truncdiv_uint32_test.main, VoidTodynamic());
+ // Exports:
+ exports.truncdiv_uint32_test = truncdiv_uint32_test;
+});
« no previous file with comments | « test/codegen/expect/language/truncdiv_test.js ('k') | test/codegen/expect/language/try_catch2_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698