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

Unified Diff: test/codegen/expect/language/fixed_type_variable_test_02_multi.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/fixed_type_variable_test_02_multi.js
diff --git a/test/codegen/expect/language/fixed_type_variable_test_02_multi.js b/test/codegen/expect/language/fixed_type_variable_test_02_multi.js
new file mode 100644
index 0000000000000000000000000000000000000000..673f8f4907efb80cbe538393c4c71e4df69cb184
--- /dev/null
+++ b/test/codegen/expect/language/fixed_type_variable_test_02_multi.js
@@ -0,0 +1,115 @@
+dart_library.library('language/fixed_type_variable_test_02_multi', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__fixed_type_variable_test_02_multi(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 fixed_type_variable_test_02_multi = Object.create(null);
+ let A = () => (A = dart.constFn(fixed_type_variable_test_02_multi.A$()))();
+ let B = () => (B = dart.constFn(fixed_type_variable_test_02_multi.B$()))();
+ let C = () => (C = dart.constFn(fixed_type_variable_test_02_multi.C$()))();
+ let AOfString = () => (AOfString = dart.constFn(fixed_type_variable_test_02_multi.A$(core.String)))();
+ let BOfint = () => (BOfint = dart.constFn(fixed_type_variable_test_02_multi.B$(core.int)))();
+ let COfString = () => (COfString = dart.constFn(fixed_type_variable_test_02_multi.C$(core.String)))();
+ let VoidTovoid = () => (VoidTovoid = dart.constFn(dart.definiteFunctionType(dart.void, [])))();
+ fixed_type_variable_test_02_multi.A$ = dart.generic(T => {
+ let BOfT = () => (BOfT = dart.constFn(fixed_type_variable_test_02_multi.B$(T)))();
+ class A extends core.Object {
+ createB() {
+ return new (BOfT())();
+ }
+ }
+ dart.addTypeTests(A);
+ dart.setSignature(A, {
+ methods: () => ({createB: dart.definiteFunctionType(fixed_type_variable_test_02_multi.B$(T), [])})
+ });
+ return A;
+ });
+ fixed_type_variable_test_02_multi.A = A();
+ fixed_type_variable_test_02_multi.NumA = class NumA extends fixed_type_variable_test_02_multi.A$(core.num) {};
+ dart.addSimpleTypeTests(fixed_type_variable_test_02_multi.NumA);
+ fixed_type_variable_test_02_multi.B$ = dart.generic(T => {
+ class B extends core.Object {
+ new() {
+ this.value = null;
+ }
+ test(type, expect) {
+ expect$.Expect.equals(expect, dart.equals(dart.wrapType(T), type));
+ }
+ }
+ dart.addTypeTests(B);
+ dart.setSignature(B, {
+ methods: () => ({test: dart.definiteFunctionType(dart.void, [dart.dynamic, core.bool])})
+ });
+ return B;
+ });
+ fixed_type_variable_test_02_multi.B = B();
+ fixed_type_variable_test_02_multi.StringB = class StringB extends fixed_type_variable_test_02_multi.B$(core.String) {
+ new() {
+ super.new();
+ }
+ };
+ dart.addSimpleTypeTests(fixed_type_variable_test_02_multi.StringB);
+ fixed_type_variable_test_02_multi.C$ = dart.generic(T => {
+ class C extends fixed_type_variable_test_02_multi.A$(T) {}
+ return C;
+ });
+ fixed_type_variable_test_02_multi.C = C();
+ fixed_type_variable_test_02_multi.IntC = class IntC extends fixed_type_variable_test_02_multi.C$(core.int) {};
+ dart.addSimpleTypeTests(fixed_type_variable_test_02_multi.IntC);
+ fixed_type_variable_test_02_multi.main = function() {
+ fixed_type_variable_test_02_multi.testNumA();
+ };
+ dart.fn(fixed_type_variable_test_02_multi.main, VoidTovoid());
+ fixed_type_variable_test_02_multi.testA = function() {
+ let instanceA = new (AOfString())();
+ let instanceB = instanceA.createB();
+ instanceB.test(dart.wrapType(core.num), false);
+ instanceB.test(dart.wrapType(core.int), false);
+ instanceB.test(dart.wrapType(core.String), true);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testA, VoidTovoid());
+ fixed_type_variable_test_02_multi.testNumA = function() {
+ let instanceA = new fixed_type_variable_test_02_multi.NumA();
+ let instanceB = instanceA.createB();
+ instanceB.test(dart.wrapType(core.num), true);
+ instanceB.test(dart.wrapType(core.int), false);
+ instanceB.test(dart.wrapType(core.String), false);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testNumA, VoidTovoid());
+ fixed_type_variable_test_02_multi.testB = function() {
+ let instanceB = new (BOfint())();
+ instanceB.test(dart.wrapType(core.num), false);
+ instanceB.test(dart.wrapType(core.int), true);
+ instanceB.test(dart.wrapType(core.String), false);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testB, VoidTovoid());
+ fixed_type_variable_test_02_multi.testStringB = function() {
+ let instanceB = new fixed_type_variable_test_02_multi.StringB();
+ instanceB.test(dart.wrapType(core.num), false);
+ instanceB.test(dart.wrapType(core.int), false);
+ instanceB.test(dart.wrapType(core.String), true);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testStringB, VoidTovoid());
+ fixed_type_variable_test_02_multi.testC = function() {
+ let instanceA = new (COfString())();
+ let instanceB = instanceA.createB();
+ instanceB.test(dart.wrapType(core.num), false);
+ instanceB.test(dart.wrapType(core.int), false);
+ instanceB.test(dart.wrapType(core.String), true);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testC, VoidTovoid());
+ fixed_type_variable_test_02_multi.testIntC = function() {
+ let instanceA = new fixed_type_variable_test_02_multi.IntC();
+ let instanceB = instanceA.createB();
+ instanceB.test(dart.wrapType(core.num), false);
+ instanceB.test(dart.wrapType(core.int), true);
+ instanceB.test(dart.wrapType(core.String), false);
+ };
+ dart.fn(fixed_type_variable_test_02_multi.testIntC, VoidTovoid());
+ // Exports:
+ exports.fixed_type_variable_test_02_multi = fixed_type_variable_test_02_multi;
+});

Powered by Google App Engine
This is Rietveld 408576698