| Index: tests/compiler/dart2js/elide_callthrough_stub_test.dart
|
| diff --git a/tests/compiler/dart2js/elide_callthrough_stub_test.dart b/tests/compiler/dart2js/elide_callthrough_stub_test.dart
|
| index 6f925b3e8bb4976d9515619e7dc62c53343df11d..2ae8f1dea049fecb696eacd596115f676e80c1de 100644
|
| --- a/tests/compiler/dart2js/elide_callthrough_stub_test.dart
|
| +++ b/tests/compiler/dart2js/elide_callthrough_stub_test.dart
|
| @@ -14,7 +14,7 @@ const String TEST1 = r'''
|
| class W {
|
| final Function _fun;
|
| W(this._fun);
|
| - foo(zzz) => _fun(zzz); // this._fun$1(zzz) --> this._fun.call$1(zzz)
|
| + foo(zzz) => _fun(zzz); // this._fun$1(zzz) --> this._fun.call$1(zzz)
|
| }
|
| add1(x) => x + 1;
|
| main() {
|
| @@ -28,7 +28,7 @@ class W {
|
| final Function __fun;
|
| Function get _fun => __fun;
|
| W(this.__fun);
|
| - foo(zzz) => _fun(zzz); // this._fun$1(zzz) stays same.
|
| + foo(zzz) => _fun(zzz); // this._fun$1(zzz) stays same.
|
| }
|
| add1(x) => x + 1;
|
| main() {
|
|
|