Index: test/codegen_expected/language/implicit_closure_test.js |
diff --git a/test/codegen_expected/language/implicit_closure_test.js b/test/codegen_expected/language/implicit_closure_test.js |
index 054a2efabcae733160668fa32269303d7786e8a1..d4515690669583447c2750d4da6075de7b9dde89 100644 |
--- a/test/codegen_expected/language/implicit_closure_test.js |
+++ b/test/codegen_expected/language/implicit_closure_test.js |
@@ -8,8 +8,8 @@ dart_library.library('language/implicit_closure_test', null, /* Imports */[ |
const dartx = dart_sdk.dartx; |
const expect$ = expect.expect; |
const implicit_closure_test = Object.create(null); |
- let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))(); |
let VoidToint = () => (VoidToint = dart.constFn(dart.definiteFunctionType(core.int, [])))(); |
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))(); |
implicit_closure_test.First = class First extends core.Object { |
new(i) { |
this.i = i; |
@@ -22,7 +22,7 @@ dart_library.library('language/implicit_closure_test', null, /* Imports */[ |
const local = (function() { |
return this.i; |
}).bind(this); |
- dart.fn(local, VoidTodynamic()); |
+ dart.fn(local, VoidToint()); |
return local; |
} |
}; |