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

Unified Diff: test/codegen/expect/language/assign_to_type_test_none_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/assign_to_type_test_none_multi.js
diff --git a/test/codegen/expect/language/assign_to_type_test_none_multi.js b/test/codegen/expect/language/assign_to_type_test_none_multi.js
new file mode 100644
index 0000000000000000000000000000000000000000..5701d1021d25ffd44897717969e5932f23366bfa
--- /dev/null
+++ b/test/codegen/expect/language/assign_to_type_test_none_multi.js
@@ -0,0 +1,48 @@
+dart_library.library('language/assign_to_type_test_none_multi', null, /* Imports */[
+ 'dart_sdk'
+], function load__assign_to_type_test_none_multi(exports, dart_sdk) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const assign_to_type_test_none_multi = Object.create(null);
+ let C = () => (C = dart.constFn(assign_to_type_test_none_multi.C$()))();
+ let COfD = () => (COfD = dart.constFn(assign_to_type_test_none_multi.C$(assign_to_type_test_none_multi.D)))();
+ let dynamicTodynamic = () => (dynamicTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [dart.dynamic])))();
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ assign_to_type_test_none_multi.noMethod = function(e) {
+ return core.NoSuchMethodError.is(e);
+ };
+ dart.fn(assign_to_type_test_none_multi.noMethod, dynamicTodynamic());
+ assign_to_type_test_none_multi.C$ = dart.generic(T => {
+ class C extends core.Object {
+ f() {}
+ }
+ dart.addTypeTests(C);
+ dart.setSignature(C, {
+ methods: () => ({f: dart.definiteFunctionType(dart.dynamic, [])})
+ });
+ return C;
+ });
+ assign_to_type_test_none_multi.C = C();
+ assign_to_type_test_none_multi.D = class D extends core.Object {};
+ assign_to_type_test_none_multi.E = class E extends core.Object {
+ new(index) {
+ this.index = index;
+ }
+ toString() {
+ return {
+ 0: "E.e0"
+ }[this.index];
+ }
+ };
+ assign_to_type_test_none_multi.E.e0 = dart.const(new assign_to_type_test_none_multi.E(0));
+ assign_to_type_test_none_multi.E.values = dart.constList([assign_to_type_test_none_multi.E.e0], assign_to_type_test_none_multi.E);
+ assign_to_type_test_none_multi.F = dart.typedef('F', () => dart.functionType(dart.void, []));
+ assign_to_type_test_none_multi.main = function() {
+ new (COfD())().f();
+ };
+ dart.fn(assign_to_type_test_none_multi.main, VoidTodynamic());
+ // Exports:
+ exports.assign_to_type_test_none_multi = assign_to_type_test_none_multi;
+});

Powered by Google App Engine
This is Rietveld 408576698