| Index: test/codegen/expect/methods.js
|
| diff --git a/test/codegen/expect/methods.js b/test/codegen/expect/methods.js
|
| index b379e950dff2a0a3f888de2336b2a4d31401ba6a..4455052a60b8d4ff6bfff4da9b9b969cfd0ca140 100644
|
| --- a/test/codegen/expect/methods.js
|
| +++ b/test/codegen/expect/methods.js
|
| @@ -70,7 +70,7 @@ var core = dart.import(core);
|
| let f = new Foo();
|
| dart.dcall(f.bar, "Bar's call method!");
|
| let a = new A();
|
| - let g = a.x.bind(a);
|
| + let g = dart.bind(a, 'x');
|
| let aa = new A();
|
| let h = dart.dload(aa, 'x');
|
| }
|
|
|