| Index: test/codegen/expect/language/deferred_no_such_method_test.js
|
| diff --git a/test/codegen/expect/language/deferred_no_such_method_test.js b/test/codegen/expect/language/deferred_no_such_method_test.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ddbae712a38954b5913663e9e29d700683eeb578
|
| --- /dev/null
|
| +++ b/test/codegen/expect/language/deferred_no_such_method_test.js
|
| @@ -0,0 +1,40 @@
|
| +dart_library.library('language/deferred_no_such_method_test', null, /* Imports */[
|
| + 'dart_sdk',
|
| + 'async_helper',
|
| + 'expect'
|
| +], function load__deferred_no_such_method_test(exports, dart_sdk, async_helper, expect) {
|
| + 'use strict';
|
| + const core = dart_sdk.core;
|
| + const dart = dart_sdk.dart;
|
| + const dartx = dart_sdk.dartx;
|
| + const async_helper$ = async_helper.async_helper;
|
| + const expect$ = expect.expect;
|
| + const deferred_no_such_method_test = Object.create(null);
|
| + const deferred_no_such_method_lib = Object.create(null);
|
| + let dynamicTodynamic = () => (dynamicTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [dart.dynamic])))();
|
| + let VoidTovoid = () => (VoidTovoid = dart.constFn(dart.definiteFunctionType(dart.void, [])))();
|
| + deferred_no_such_method_test.main = function() {
|
| + async_helper$.asyncStart();
|
| + loadLibrary().then(dart.dynamic)(dart.fn(_ => {
|
| + expect$.Expect.equals(42, dart.dsend(new deferred_no_such_method_lib.C(), 'nonExisting'));
|
| + async_helper$.asyncEnd();
|
| + }, dynamicTodynamic()));
|
| + };
|
| + dart.fn(deferred_no_such_method_test.main, VoidTovoid());
|
| + deferred_no_such_method_lib.C = dart.callableClass(function C(...args) {
|
| + const self = this;
|
| + function call(...args) {
|
| + return self.call.apply(self, args);
|
| + }
|
| + call.__proto__ = this.__proto__;
|
| + call.new.apply(call, args);
|
| + return call;
|
| + }, class C extends core.Object {
|
| + noSuchMethod(invocation) {
|
| + return 42;
|
| + }
|
| + });
|
| + // Exports:
|
| + exports.deferred_no_such_method_test = deferred_no_such_method_test;
|
| + exports.deferred_no_such_method_lib = deferred_no_such_method_lib;
|
| +});
|
|
|