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

Unified Diff: test/codegen/expect/language/deferred_no_such_method_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/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;
+});

Powered by Google App Engine
This is Rietveld 408576698