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