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

Unified Diff: test/codegen/expect/language/static_implicit_closure_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/static_implicit_closure_test.js
diff --git a/test/codegen/expect/language/static_implicit_closure_test.js b/test/codegen/expect/language/static_implicit_closure_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..a50d31dd39e67c9dff3fcd01cb21fda2b3465af2
--- /dev/null
+++ b/test/codegen/expect/language/static_implicit_closure_test.js
@@ -0,0 +1,51 @@
+dart_library.library('language/static_implicit_closure_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__static_implicit_closure_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 static_implicit_closure_test = Object.create(null);
+ let VoidToint = () => (VoidToint = dart.constFn(dart.definiteFunctionType(core.int, [])))();
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ static_implicit_closure_test.First = class First extends core.Object {
+ new() {
+ }
+ static get a() {
+ return 10;
+ }
+ static foo() {
+ return 30;
+ }
+ };
+ dart.setSignature(static_implicit_closure_test.First, {
+ constructors: () => ({new: dart.definiteFunctionType(static_implicit_closure_test.First, [])}),
+ statics: () => ({foo: dart.definiteFunctionType(core.int, [])}),
+ names: ['foo']
+ });
+ static_implicit_closure_test.First.b = null;
+ static_implicit_closure_test.StaticImplicitClosureTest = class StaticImplicitClosureTest extends core.Object {
+ static testMain() {
+ let func = dart.fn(() => 20, VoidToint());
+ expect$.Expect.equals(10, static_implicit_closure_test.First.a);
+ static_implicit_closure_test.First.b = static_implicit_closure_test.First.a;
+ expect$.Expect.equals(10, static_implicit_closure_test.First.b);
+ static_implicit_closure_test.First.b = func;
+ expect$.Expect.equals(20, dart.dsend(static_implicit_closure_test.First, 'b'));
+ let fa = static_implicit_closure_test.First.foo;
+ expect$.Expect.equals(30, dart.dcall(fa));
+ }
+ };
+ dart.setSignature(static_implicit_closure_test.StaticImplicitClosureTest, {
+ statics: () => ({testMain: dart.definiteFunctionType(dart.void, [])}),
+ names: ['testMain']
+ });
+ static_implicit_closure_test.main = function() {
+ static_implicit_closure_test.StaticImplicitClosureTest.testMain();
+ };
+ dart.fn(static_implicit_closure_test.main, VoidTodynamic());
+ // Exports:
+ exports.static_implicit_closure_test = static_implicit_closure_test;
+});

Powered by Google App Engine
This is Rietveld 408576698