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

Unified Diff: test/codegen/expect/language/function_subtype_local6_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/function_subtype_local6_test.js
diff --git a/test/codegen/expect/language/function_subtype_local6_test.js b/test/codegen/expect/language/function_subtype_local6_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..17fddfbee93ff12feeaf71d04bf2feec2badd667
--- /dev/null
+++ b/test/codegen/expect/language/function_subtype_local6_test.js
@@ -0,0 +1,34 @@
+dart_library.library('language/function_subtype_local6_test', null, /* Imports */[
+ 'dart_sdk'
+], function load__function_subtype_local6_test(exports, dart_sdk) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const function_subtype_local6_test = Object.create(null);
+ let C = () => (C = dart.constFn(function_subtype_local6_test.C$()))();
+ let COfbool = () => (COfbool = dart.constFn(function_subtype_local6_test.C$(core.bool)))();
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ function_subtype_local6_test.C$ = dart.generic(T => {
+ let TTovoid = () => (TTovoid = dart.constFn(dart.definiteFunctionType(dart.void, [T])))();
+ class C extends core.Object {
+ test() {
+ function foo(a) {
+ }
+ dart.fn(foo, TTovoid());
+ }
+ }
+ dart.addTypeTests(C);
+ dart.setSignature(C, {
+ methods: () => ({test: dart.definiteFunctionType(dart.void, [])})
+ });
+ return C;
+ });
+ function_subtype_local6_test.C = C();
+ function_subtype_local6_test.main = function() {
+ new (COfbool())().test();
+ };
+ dart.fn(function_subtype_local6_test.main, VoidTodynamic());
+ // Exports:
+ exports.function_subtype_local6_test = function_subtype_local6_test;
+});

Powered by Google App Engine
This is Rietveld 408576698