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

Unified Diff: test/codegen_expected/language/call_argument_inference_test.js

Issue 2200913002: fixes #616, statics on callable functions (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_expected/language/call_argument_inference_test.js
diff --git a/test/codegen_expected/language/call_argument_inference_test.js b/test/codegen_expected/language/call_argument_inference_test.js
index 0c51d7d584949b50f74ebd9417e4a236bcb55aa7..8fb0fb46c5dec2bc8855c3e4548c526f3db7bc47 100644
--- a/test/codegen_expected/language/call_argument_inference_test.js
+++ b/test/codegen_expected/language/call_argument_inference_test.js
@@ -10,9 +10,8 @@ dart_library.library('language/call_argument_inference_test', null, /* Imports *
const call_argument_inference_test = Object.create(null);
let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
call_argument_inference_test.A = dart.callableClass(function A(...args) {
- const self = this;
function call(...args) {
- return self.call.apply(self, args);
+ return call.call.apply(call, args);
}
call.__proto__ = this.__proto__;
call.new.apply(call, args);
« no previous file with comments | « test/codegen_expected/corelib/apply_test.js ('k') | test/codegen_expected/language/call_function_apply_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698