| Index: test/codegen_expected/language/call_function_apply_test.js
|
| diff --git a/test/codegen_expected/language/call_function_apply_test.js b/test/codegen_expected/language/call_function_apply_test.js
|
| index deb20e7686100362be747463a11022ad9dd70beb..bc0686a37686ac50493dab8dcc896c456aa20471 100644
|
| --- a/test/codegen_expected/language/call_function_apply_test.js
|
| +++ b/test/codegen_expected/language/call_function_apply_test.js
|
| @@ -10,9 +10,8 @@ dart_library.library('language/call_function_apply_test', null, /* Imports */[
|
| const call_function_apply_test = Object.create(null);
|
| let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
|
| call_function_apply_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);
|
|
|