| Index: test/codegen/expect/functions.js
|
| diff --git a/test/codegen/expect/functions.js b/test/codegen/expect/functions.js
|
| index 2c605c6229fef62148cd610650e1a5b270f28946..b1860f67d3dfde0cde9e75ca8438ff6cf76dc63a 100644
|
| --- a/test/codegen/expect/functions.js
|
| +++ b/test/codegen/expect/functions.js
|
| @@ -9,8 +9,8 @@ dart_library.library('functions', null, /* Imports */[
|
| return dart.list([new Foo()], Foo);
|
| }
|
| dart.fn(bootstrap, () => dart.definiteFunctionType(core.List$(Foo), []));
|
| - let A2B$ = dart.generic(function(A, B) {
|
| - let A2B = dart.typedef('A2B', () => dart.functionType(B, [A]));
|
| + const A2B$ = dart.generic(function(A, B) {
|
| + const A2B = dart.typedef('A2B', () => dart.functionType(B, [A]));
|
| return A2B;
|
| });
|
| let A2B = A2B$();
|
|
|