Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: test/codegen_expected/language/implicit_closure_test.js

Issue 2214263005: Mark recursive_inheritance_test as passing (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Bumped pubspec Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
};

Powered by Google App Engine
This is Rietveld 408576698