| Index: test/codegen/expect/try_catch.js
|
| diff --git a/test/codegen/expect/try_catch.js b/test/codegen/expect/try_catch.js
|
| index f1e444009c45e3a0b4e1fe9d88f493943c415a4b..d0d4b60d7780f41aefba8dc4fcca1d103000acc5 100644
|
| --- a/test/codegen/expect/try_catch.js
|
| +++ b/test/codegen/expect/try_catch.js
|
| @@ -64,11 +64,11 @@ dart_library.library('try_catch', null, /* Imports */[
|
| }
|
| dart.fn(wub);
|
| function main() {
|
| - foo();
|
| - bar();
|
| - baz();
|
| - qux();
|
| - wub();
|
| + dart.dcall(foo);
|
| + dart.dcall(bar);
|
| + dart.dcall(baz);
|
| + dart.dcall(qux);
|
| + dart.dcall(wub);
|
| }
|
| dart.fn(main);
|
| // Exports:
|
|
|